Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ test: unit-tests examples
unit-tests: $(tests_binary)
$^ --exclude=integration --sequential

test-one: $(tests_binary)
$^ --only="$(t)"

$(tests_binary): $(SOURCE_FILES) | $(BUILD_DIR) fetch
$(PONYC) -o $(BUILD_DIR) $(SRC_DIR)

Expand Down Expand Up @@ -84,4 +87,4 @@ all: test
$(BUILD_DIR):
mkdir -p $(BUILD_DIR)

.PHONY: all examples _build_examples clean fetch TAGS test
.PHONY: all examples _build_examples clean fetch TAGS test test-one
Loading