]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - tools/testing/selftests/powerpc/pmu/ebb/Makefile
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
[karo-tx-linux.git] / tools / testing / selftests / powerpc / pmu / ebb / Makefile
diff --git a/tools/testing/selftests/powerpc/pmu/ebb/Makefile b/tools/testing/selftests/powerpc/pmu/ebb/Makefile
new file mode 100644 (file)
index 0000000..edbba2a
--- /dev/null
@@ -0,0 +1,32 @@
+noarg:
+       $(MAKE) -C ../../
+
+# The EBB handler is 64-bit code and everything links against it
+CFLAGS += -m64
+
+PROGS := reg_access_test event_attributes_test cycles_test     \
+        cycles_with_freeze_test pmc56_overflow_test            \
+        ebb_vs_cpu_event_test cpu_event_vs_ebb_test            \
+        cpu_event_pinned_vs_ebb_test task_event_vs_ebb_test    \
+        task_event_pinned_vs_ebb_test multi_ebb_procs_test     \
+        multi_counter_test pmae_handling_test                  \
+        close_clears_pmcc_test instruction_count_test          \
+        fork_cleanup_test ebb_on_child_test                    \
+        ebb_on_willing_child_test back_to_back_ebbs_test       \
+        lost_exception_test no_handler_test
+
+all: $(PROGS)
+
+$(PROGS): ../../harness.c ../event.c ../lib.c ebb.c ebb_handler.S trace.c
+
+instruction_count_test: ../loop.S
+
+lost_exception_test: ../lib.c
+
+run_tests: all
+       @-for PROG in $(PROGS); do \
+               ./$$PROG; \
+       done;
+
+clean:
+       rm -f $(PROGS)