Skip to content

Commit 9e1ddf9

Browse files
committed
Run tests on stable.
1 parent 2916bea commit 9e1ddf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/tools/run-bindgen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717

1818
[_, bindgen_path, c_path, rust_path] = sys.argv
1919

20-
flags = []
20+
flags = ["--no-unstable-rust"]
2121

2222
with open(sys.argv[2]) as f:
2323
for line in f:
2424
if line.startswith(BINDGEN_FLAGS_PREFIX):
25-
flags = line.strip().split(BINDGEN_FLAGS_PREFIX)[1].split(" ")
25+
flags.extend(line.strip().split(BINDGEN_FLAGS_PREFIX)[1].split(" "))
2626
break
2727

2828
base_command = [bindgen_path, "-o", rust_path]

0 commit comments

Comments
 (0)