Overview
| Comment: | Updated to ignore symlinks in KitBuild directory |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
535e327857bf74a55d02e95855bb4b2f |
| User & Date: | rkeene on 2010-10-05 02:26:23 |
| Other Links: | manifest | tags |
Context
|
2010-10-05
| ||
| 02:28 | Corrected typo in comments check-in: 0f0abdc08e user: rkeene tags: trunk | |
| 02:26 | Updated to ignore symlinks in KitBuild directory check-in: 535e327857 user: rkeene tags: trunk | |
|
2010-10-04
| ||
| 18:36 | KitCreator 0.5.0.x check-in: ef2f679de2 user: rkeene tags: trunk, 0.5.0 | |
Changes
Modified build/test/index.ttml from [b561fed95c] to [32e3b3a01b].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | + + + + + |
<html>
<head>
<title>KitCreator Build and Test Status</title>
</head>
<body>
<h1>KitCreator Build and Test Status</h1>
<p>The follow versions of KitCreator have test suite results:</p>
<ul>
<?
set haveTests 0
foreach subdir [lsort -dictionary [glob -type d *]] {
file lstat $subdir subdirinfo
if {$subdirinfo(type) == "link"} {
continue
}
if {$subdir == "tests"} {
set haveTests 1
continue
}
puts " <li><a href=\"${subdir}/\">$subdir</a></li>"
|
| ︙ |