Skip to content

Commit

Permalink
fix: test script doesn't fail if output directory already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
rsekman committed Sep 12, 2024
1 parent 6ef4bad commit f37f847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests.mk
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ $(BUILD)/runtests: $(TEST_C_OBJS) $(GOOGLE_TEST_OBJS) $(TEST_CPP_OBJS)
$(CXX) $(LDFLAGS) $(TEST_C_OBJS) $(GOOGLE_TEST_OBJS) $(TEST_CPP_OBJS) $(LIBRARIES) -o $@

runtests: $(BUILD)/runtests
mkdir $(BUILD)/Tests
mkdir -p $(BUILD)/Tests
cp -r Tests/TestData $(BUILD)/Tests/
cp -r Tests/PresetManagerData $(BUILD)/Tests/
cd $(BUILD) ; ./runtests
Expand Down

0 comments on commit f37f847

Please sign in to comment.