Use new command line parameter syntax in test runner
This commit is contained in:
parent
4ef724041b
commit
ee9cd987e7
@ -276,7 +276,7 @@
|
|||||||
"exit_code": 0,
|
"exit_code": 0,
|
||||||
"stdin_lines": [],
|
"stdin_lines": [],
|
||||||
"stdout_lines": [
|
"stdout_lines": [
|
||||||
"3/4",
|
"1/4",
|
||||||
"1/4",
|
"1/4",
|
||||||
"1",
|
"1",
|
||||||
"3/10"
|
"3/10"
|
||||||
|
@ -20,9 +20,9 @@ bin/$(os)/builtin_function_documentation.cc: musique/interpreter/builtin_functio
|
|||||||
|
|
||||||
Debug_Obj=$(addprefix bin/$(os)/debug/,$(Obj)) bin/$(os)/debug/builtin_function_documentation.o
|
Debug_Obj=$(addprefix bin/$(os)/debug/,$(Obj)) bin/$(os)/debug/builtin_function_documentation.o
|
||||||
|
|
||||||
bin/$(os)/debug/$(Target): $(Debug_Obj) bin/$(os)/debug/main.o bin/$(os)/rtmidi.o $(Bestline)
|
bin/$(os)/debug/$(Target): $(Debug_Obj) bin/$(os)/debug/main.o bin/$(os)/rtmidi.o
|
||||||
@echo "CXX $@"
|
@echo "CXX $@"
|
||||||
@$(CXX) $(CXXFLAGS) $(DEBUG_FLAGS) $(CPPFLAGS) -o $@ $(Debug_Obj) bin/$(os)/rtmidi.o $(Bestline) $(LDFLAGS) $(LDLIBS)
|
@$(CXX) $(CXXFLAGS) $(DEBUG_FLAGS) $(CPPFLAGS) -o $@ $(Debug_Obj) bin/$(os)/rtmidi.o $(shell CXX=$(CXX) os=$(os) scripts/build_replxx.sh) $(LDFLAGS) $(LDLIBS)
|
||||||
|
|
||||||
bin/$(os)/debug/%.o: musique/%.cc
|
bin/$(os)/debug/%.o: musique/%.cc
|
||||||
@echo "CXX $@"
|
@echo "CXX $@"
|
||||||
|
@ -26,7 +26,7 @@ class TestCase:
|
|||||||
|
|
||||||
def run(self, interpreter: str, source: str, cwd: str):
|
def run(self, interpreter: str, source: str, cwd: str):
|
||||||
result = subprocess.run(
|
result = subprocess.run(
|
||||||
args=[interpreter, source, "-q"],
|
args=[interpreter, "run", source],
|
||||||
capture_output=True,
|
capture_output=True,
|
||||||
cwd=cwd,
|
cwd=cwd,
|
||||||
text=True
|
text=True
|
||||||
|
Loading…
Reference in New Issue
Block a user