Skip to content

Commit 0183b55

Browse files
committed
Specify output directory for CN
Filename.get_temp_dir_name() is not guaranteed to be deterministic, let alone the same across platforms, and so we pass it in for running in the CI (on GitHub or locally).
1 parent 7610fd8 commit 0183b55

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/cn/verify.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "verify",
3-
"args": ["verify"],
3+
"args": ["verify", "--output-dir=/tmp"],
44
"filter": "^(.*\\.c)$",
55
"timeout": 60
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "no_annot",
3-
"args": ["verify", "-DVIP", "-DNO_ROUND_TRIP", "--solver-type=cvc5" ],
3+
"args": ["verify", "-DVIP", "-DNO_ROUND_TRIP", "--solver-type=cvc5", "--output-dir=/tmp"],
44
"filter": "^(.*\\.c)$",
55
"timeout": 35
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "non_det_false",
3-
"args": ["verify", "-DVIP", "-DNO_ROUND_TRIP", "-DNON_DET_FALSE", "--solver-type=cvc5" ],
3+
"args": ["verify", "-DVIP", "-DNO_ROUND_TRIP", "-DNON_DET_FALSE", "--solver-type=cvc5", "--output-dir=/tmp"],
44
"filter": "^(.*\\.nondet.c)$",
55
"timeout": 35
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "non_det_true",
3-
"args": ["verify", "-DVIP", "-DNO_ROUND_TRIP", "-DNON_DET_TRUE", "--solver-type=cvc5" ],
3+
"args": ["verify", "-DVIP", "-DNO_ROUND_TRIP", "-DNON_DET_TRUE", "--solver-type=cvc5", "--output-dir=/tmp"],
44
"filter": "^(.*\\.nondet\\.c)$",
55
"timeout": 35
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "with_annot",
3-
"args": ["verify", "-DVIP", "-DANNOT", "-DNO_ROUND_TRIP", "--solver-type=cvc5" ],
3+
"args": ["verify", "-DVIP", "-DANNOT", "-DNO_ROUND_TRIP", "--solver-type=cvc5", "--output-dir=/tmp"],
44
"filter": "^((pointer_from_int_disambiguation_3\\.error\\.c)|(.*\\.annot\\.c))$",
55
"timeout": 35
66
}

0 commit comments

Comments
 (0)