Test "mcexec additional options (h, m, n, O, stack-premap)" on arm64

Change-Id: I85d5deb0433cc1208e4b6837dcc6d6dc2a7b7b52
This commit is contained in:
Shiratori, Takehiro
2018-11-23 16:03:33 +09:00
committed by Masamichi Takagi
parent dc1f96fee3
commit 00395d68d4
13 changed files with 866 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# Makefile COPYRIGHT FUJITSU LIMITED 2018
CC = gcc
TARGET = extend_heap node_bind allow_oversubscribe stack_premap
LDFLAGS =
all: $(TARGET)
extend_heap: extend_heap.c
$(CC) -o $@ $^ $(LDFLAGS)
node_bind: node_bind.c
$(CC) -o $@ $^ $(LDFLAGS) -lnuma
allow_oversubscribe: allow_oversubscribe.c
$(CC) -o $@ $^ $(LDFLAGS)
stack_premap: stack_premap.c
$(CC) -o $@ $^ $(LDFLAGS)
test: all
./run_extend_heap.sh
./run_node_bind.sh
./run_nr_partitions.sh
./run_allow_oversubscribe.sh
./run_stack_premap.sh
clean:
rm -f $(TARGET)