diff --git a/Makefile b/Makefile index 245cd02..efeb282 100755 --- a/Makefile +++ b/Makefile @@ -34,6 +34,9 @@ test: unit-tests build-examples unit-tests: $(tests_binary) $^ --exclude=integration --sequential +test-one: $(tests_binary) + $^ --only="$(t)" + $(tests_binary): $(SOURCE_FILES) | $(BUILD_DIR) $(GET_DEPENDENCIES_WITH) $(PONYC) -o $(BUILD_DIR) $(SRC_DIR) @@ -63,4 +66,4 @@ all: test $(BUILD_DIR): mkdir -p $(BUILD_DIR) -.PHONY: all build-examples clean TAGS test +.PHONY: all build-examples clean TAGS test test-one