File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -43,5 +43,14 @@ travis_time_end
43
43
44
44
travis_time_start script.test
45
45
source bashrc.eus
46
- export EXIT_STATUS=0; for test_l in irteus/test/* .l; do irteusgl $test_l ; export EXIT_STATUS=` expr $? + $EXIT_STATUS ` ; done ; echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ] || exit 1
46
+ export EXIT_STATUS=0;
47
+ echo " Source test"
48
+ for test_l in irteus/test/* .l; do irteusgl $test_l ; export EXIT_STATUS=` expr $? + $EXIT_STATUS ` ; done ;
49
+ travis_time_end
50
+
51
+ travis_time_start compiled.test
52
+ echo " Compiled test"
53
+ for test_l in irteus/test/* .l; do irteusgl " (progn (comp::compile-file-if-src-newer \" $test_l \" \" irteus/test\" ) (load (namestring (merge-pathnames \" .so\" \" $test_l \" ))))" ; export EXIT_STATUS=` expr $? + $EXIT_STATUS ` ; done ;
54
+
55
+ echo " Exit status : $EXIT_STATUS " ; [ $EXIT_STATUS == 0 ] || exit 1
47
56
travis_time_end
You can’t perform that action at this time.
0 commit comments