File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ build_script:
56
56
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x64
57
57
sed -i "s/BUILD_ENV[ ]*=.*/BUILD_ENV = MSVC/" src/config.inc
58
58
make -C src -j2
59
- make -C src symex.dir -j2
60
59
61
60
test_script :
62
61
- cmd : |
@@ -112,6 +111,11 @@ test_script:
112
111
rmdir /s /q cbmc-java\tableswitch2
113
112
rmdir /s /q goto-gcc
114
113
rmdir /s /q goto-instrument\slice08
114
+ rmdir /s /q symex\va_args_10
115
+ rmdir /s /q symex\va_args_2
116
+ rmdir /s /q symex\va_args_3
117
+ rmdir /s /q symex\va_args_5
118
+ rmdir /s /q symex\va_args_6
115
119
116
120
make test
117
121
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ DIRS = ansi-c \
12
12
invariants \
13
13
strings \
14
14
strings-smoke-tests \
15
+ symex \
15
16
test-script \
16
17
# Empty last line
17
18
Original file line number Diff line number Diff line change 1
1
default : tests.log
2
2
3
3
test :
4
- @../test.pl -c ../../../src/symex/symex
4
+ @if ! ../test.pl -c ../../../src/symex/symex ; then \
5
+ ../failed-tests-printer.pl ; \
6
+ exit 1 ; \
7
+ fi
5
8
6
9
tests.log : ../test.pl
7
- @../test.pl -c ../../../src/symex/symex
10
+ @if ! ../test.pl -c ../../../src/symex/symex ; then \
11
+ ../failed-tests-printer.pl ; \
12
+ exit 1 ; \
13
+ fi
8
14
9
15
show :
10
16
@for dir in * ; do \
You can’t perform that action at this time.
0 commit comments