Skip to content

Commit 3b2b2b2

Browse files
committed
run tests as executables in Makefile
1 parent 8f6891b commit 3b2b2b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COMPRESS_OBJ := $(OUTPUT_LIB)/$(COMPRESS_NAME).ko
1818
DECOMPRESS_OBJ := $(OUTPUT_LIB)/$(DECOMPRESS_NAME).ko
1919
BDEV_OBJ := $(OUTPUT_BDEV)/$(BDEV_NAME).ko
2020

21-
TEST_ALL := $(PWD)/test/test_all.sh
21+
TEST_ALL := ./test/test_all.sh
2222

2323
# ---------------- All, lib and block dev----------------
2424

@@ -111,4 +111,4 @@ bdev_reinsert:
111111

112112
.PHONY: test
113113
test:
114-
$(MAKE) && $(SHELL) $(TEST_ALL)
114+
$(MAKE) && $(TEST_ALL)

0 commit comments

Comments
 (0)