aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--Test.mk2
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0b0153b..a09309e 100644
--- a/Makefile
+++ b/Makefile
@@ -32,14 +32,15 @@ check:
@(cd cpuhotplug; $(MAKE) check)
@(cd cpuidle; $(MAKE) check)
@(cd sched_mc; $(MAKE) check)
- @(cd suspend; $(MAKE) check)
- @(cd thermal; $(MAKE) check)
+# @(cd suspend; $(MAKE) check)
+# @(cd thermal; $(MAKE) check)
uncheck:
@(cd cpufreq; $(MAKE) uncheck)
@(cd cpuhotplug; $(MAKE) uncheck)
@(cd cpuidle; $(MAKE) uncheck)
@(cd sched_mc; $(MAKE) uncheck)
+ @(cd suspend; $(MAKE) uncheck)
@(cd thermal; $(MAKE) uncheck)
recheck: uncheck check
diff --git a/Test.mk b/Test.mk
index a48a18c..1d69d7a 100644
--- a/Test.mk
+++ b/Test.mk
@@ -24,7 +24,7 @@
TST=$(wildcard *.sh)
LOG=$(TST:.sh=.log)
-CFLAGS?=-g -Wall
+CFLAGS?=-g -Wall -pthread
CC?=gcc
SRC=$(wildcard *.c)
EXEC=$(SRC:%.c=%)