Skip to content

Commit

Permalink
Fixed file paths in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ratstail91 committed Oct 15, 2024
1 parent c0f1ec7 commit 6e4dabb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integrations/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ TEST_REPLNAME=repl.exe
all: source repl run

run: $(TEST_SCRIPTFILES)
$(TEST_OUTDIR)/$(TEST_REPLNAME) -f ../$<
cd $(TEST_OUTDIR) ; $(TEST_REPLNAME) -f ../$<

#same as above, but with gdb
gdb: source repl run-gdb

run-gdb: $(TEST_SCRIPTFILES)
gdb $(TEST_OUTDIR)/$(TEST_REPLNAME) -ex "run -f ../$<" --batch
gdb $(TEST_OUTDIR)/$(TEST_REPLNAME) -ex "cd $(TEST_OUTDIR)" -ex "run -f ../$<" --batch

#compile the source and repl first
source: $(TEST_OBJDIR) $(TEST_OUTDIR)
Expand Down

0 comments on commit 6e4dabb

Please sign in to comment.