Differences From Artifact [1d05b40be7]:
- File dashboard.scm — part of check-in [5ff16368ff] at 2016-10-27 15:21:46 on branch v1.62 — Run tab resize fixed (user: ritikaag, size: 147856) [annotate] [blame] [check-ins using] [more...]
To Artifact [bbe8e1b8f9]:
- File dashboard.scm — part of check-in [008a2a445e] at 2016-10-30 11:29:01 on branch v1.62 — Added check for unrecognised parameters to dashboard and added MT_TESTSUITE_NAME var for all situations. Changed name from MT_TESTSUITENAME (user: matt, size: 147983) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
84 85 86 87 88 89 90 91 92 93 94 95 96 97 | "-v" "-q" "-use-local" "-skip-version-check" ) args:arg-hash 0)) (if (args:get-arg "-h") (begin (print help) (exit))) ;; TODO: Move this inside (main) | > > > > > | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | "-v" "-q" "-use-local" "-skip-version-check" ) args:arg-hash 0)) (if (not (null? remargs)) (begin (print "Unrecognised arguments: " (string-intersperse remargs " ")) (exit))) (if (args:get-arg "-h") (begin (print help) (exit))) ;; TODO: Move this inside (main) |
︙ | ︙ |