File tree 2 files changed +4
-25
lines changed
2 files changed +4
-25
lines changed Original file line number Diff line number Diff line change @@ -36,22 +36,6 @@ phases:
36
36
37
37
post_build :
38
38
commands :
39
- - |
40
- cd regression
41
- # HACK disable failing tests
42
- Remove-Item ansi-c\Forward_Declaration2 -Force -Recurse
43
- Remove-Item cbmc\Malloc23 -Force -Recurse
44
- Remove-Item cbmc\byte_update2 -Force -Recurse
45
- Remove-Item cbmc\byte_update3 -Force -Recurse
46
- Remove-Item cbmc\byte_update4 -Force -Recurse
47
- Remove-Item cbmc\byte_update5 -Force -Recurse
48
- Remove-Item cbmc\byte_update6 -Force -Recurse
49
- Remove-Item cbmc\byte_update7 -Force -Recurse
50
- cd ..
51
- cd jbmc/regression
52
- Remove-Item jbmc\VarLengthArrayTrace1 -Force -Recurse
53
- cd ../..
54
-
55
39
- |
56
40
$env:Path = "C:\tools\cygwin\bin;$env:Path"
57
41
cmd /c 'call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 && bash -c "make -C regression test BUILD_ENV=MSVC" '
Original file line number Diff line number Diff line change @@ -24,21 +24,16 @@ DIRS = cbmc \
24
24
contracts \
25
25
# Empty last line
26
26
27
- # Tests under goto-gcc cannot be run on Windows, so appveyor.yml unlinks
28
- # the entire directory under Windows. This variable will contain the list
29
- # of directories that actually exist on the current platform.
30
- PLATFORM_DIRS = $(wildcard $(DIRS ) )
31
-
32
27
# Run all test directories in sequence
33
28
.PHONY : test
34
29
test :
35
- @for dir in $(PLATFORM_DIRS ) ; do \
30
+ @for dir in $(DIRS ) ; do \
36
31
$(MAKE ) " $$ dir" || exit 1; \
37
32
done ;
38
33
39
34
# Pattern to execute a single test suite directory
40
- .PHONY : $(PLATFORM_DIRS )
41
- $(PLATFORM_DIRS ) :
35
+ .PHONY : $(DIRS )
36
+ $(DIRS ) :
42
37
@echo " Running $@ ..." ;
43
38
$(MAKE ) -C " $@ " test || exit 1;
44
39
@@ -54,7 +49,7 @@ test-parallel:
54
49
--linebuffer \
55
50
--jobs $(JOBS ) \
56
51
$(MAKE ) " {}" \
57
- ::: $(PLATFORM_DIRS )
52
+ ::: $(DIRS )
58
53
59
54
60
55
.PHONY : clean
You can’t perform that action at this time.
0 commit comments