From eba2cd951e5851060dfbf1a2843b967b657b393f Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 11 Jul 2021 14:38:49 +0200 Subject: [PATCH] Revert addition of test_install --- test_install/Makefile | 15 --------------- test_install/test_sched_include.c | 5 ----- 2 files changed, 20 deletions(-) delete mode 100644 test_install/Makefile delete mode 100644 test_install/test_sched_include.c diff --git a/test_install/Makefile b/test_install/Makefile deleted file mode 100644 index 29cd81322..000000000 --- a/test_install/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# -# tests of installed headers and libs -# - -INSTALLDIR = ../install - -.PHONY: all -all: test_sched_include - -test_sched_include: test_sched_include.c - $(CC) -c -I$(INSTALLDIR)/include $< - -.PHONY: clean -clean: - rm -f *.o diff --git a/test_install/test_sched_include.c b/test_install/test_sched_include.c deleted file mode 100644 index aea35680d..000000000 --- a/test_install/test_sched_include.c +++ /dev/null @@ -1,5 +0,0 @@ -// tests that inclusion of openblas_config.h works with musl - -#include - -cpu_set_t* cpu_set = NULL;