From bd07863edfe03e7920d95bd99d4e92d6d6e6f156 Mon Sep 17 00:00:00 2001 From: Samuel Aubertin Date: Sat, 29 Jan 2022 14:00:20 +0100 Subject: [PATCH] Remove taskset, monocore machines are failing with it --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fc3d127..b042221 100644 --- a/Makefile +++ b/Makefile @@ -154,7 +154,7 @@ $(RESULTS_FILE): build for p in $(PROGS); do \ for t in $$(seq $(TIMES)); do \ sleep 0.1; \ - (taskset 01 ./$$p $(OCTOFLAGS) || printf "{ \"$$p\": false }")>> $@; \ + (./$$p $(OCTOFLAGS) || printf "{ \"$$p\": false }")>> $@; \ if ! [ "$$p" = "$(lastword $(PROGS))" ]; \ then printf ',\n' >> $@; \ else if ! [ $$t -eq $(TIMES) ]; \