diff options
author | John Hodge <tpg@mutabah.net> | 2016-12-04 12:51:07 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-12-04 12:51:07 +0800 |
commit | e5703ebb76e6f0a3383587b28ae600efcc1acea8 (patch) | |
tree | a9b5038df5faa8274c3abab669ac939192375f4b | |
parent | ee2a6cc2084699b9a5903be91ee122d09e5cf240 (diff) | |
download | mrust-e5703ebb76e6f0a3383587b28ae600efcc1acea8.tar.gz |
Makefile - Write hello_world test to a C file
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -206,7 +206,7 @@ rust_tests-run-fail: $(call DEF_RUST_TESTS,run-fail) #rust_tests-compile-fail: $(call DEF_RUST_TESTS,compile-fail) output/rust/test_run-pass_hello: $(RUST_TESTS_DIR)run-pass/hello.rs output/libstd.hir $(BIN) - $(DBG) $(BIN) $< -o $@ $(PIPECMD) + $(DBG) $(BIN) $< -o $@.c $(PIPECMD) TEST_ARGS_run-pass/cfgs-on-items := --cfg fooA --cfg fooB |