]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - testsuite/Makefile
testsuite: declare dependency between $(TESTS) and generate_nlmsg
[mirror_iproute2.git] / testsuite / Makefile
index d1ac997d7919c7bc4110ed20fa4087bc91f010ec..9b0f1c157a3980a3ac80b8489d316128622698aa 100644 (file)
@@ -28,20 +28,24 @@ endif
 configure:
        echo "Entering iproute2" && cd iproute2 && $(MAKE) configure && cd ..;
 
-compile: configure
+compile: configure generate_nlmsg
        echo "Entering iproute2" && cd iproute2 && $(MAKE) && cd ..;
-       $(MAKE) -C tools
 
 listtests:
        @for t in $(TESTS); do \
                echo "$$t"; \
        done
 
-alltests: $(TESTS)
+generate_nlmsg:
+       $(MAKE) -C tools
+
+alltests: generate_nlmsg $(TESTS)
 
-clean:
+testclean:
        @echo "Removing $(RESULTS_DIR) dir ..."
        @rm -rf $(RESULTS_DIR)
+
+clean: testclean
        @rm -f iproute2/iproute2-this
        @rm -f tests/ip/link/dev_wo_vf_rate.nl
        $(MAKE) -C tools clean
@@ -49,18 +53,21 @@ clean:
 distclean: clean
        echo "Entering iproute2" && cd iproute2 && $(MAKE) distclean && cd ..;
 
-$(TESTS): clean
+$(TESTS): generate_nlmsg testclean
+ifeq (,$(IPVERS))
+       $(error Please run make first)
+endif
 ifeq (,$(HAVE_UNSHARED_UTIL))
        $(error Please install util-linux tools to run tests in separated network namespace)
 endif
        @./tools/generate_nlmsg
 
        @mkdir -p $(RESULTS_DIR)
-       
+
        @for d in $(TESTS_DIR); do \
            mkdir -p $(RESULTS_DIR)/$$d; \
        done
-       
+
        @if [ "$(KCPATH)" = "/proc/config.gz" ]; then \
                gunzip -c $(KCPATH) >$(KENVFN); \
        elif [ "$(KCPATH)" != "" ]; then \
@@ -78,11 +85,11 @@ endif
                TC="$$i/tc/tc" IP="$$i/ip/ip" SS=$$i/misc/ss DEV="$(DEV)" IPVER="$@" SNAME="$$i" \
                ERRF="$(RESULTS_DIR)/$@.$$o.err" $(PREFIX) tests/$@ > $(RESULTS_DIR)/$@.$$o.out; \
                if [ "$$?" = "127" ]; then \
-                       echo "SKIPPED"; \
+                       echo "\e[1;35mSKIPPED\e[0m"; \
                elif [ -e "$(RESULTS_DIR)/$@.$$o.err" ]; then \
-                       echo "FAILED"; \
+                       echo "\e[0;31mFAILED\e[0m"; \
                else \
-                       echo "PASS"; \
+                       echo "\e[0;32mPASS\e[0m"; \
                fi; \
                rm "$$TMP_ERR" "$$TMP_OUT"; \
                sudo dmesg > $(RESULTS_DIR)/$@.$$o.dmesg; \