Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add execute_sched_setattr #453

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions tests/e2e/tools/FFI/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
CC = gcc
CFLAGS = -Wall -g

VPATH=disk/QM:memory:deny_set_scheduler
VPATH=disk/QM:memory:deny_set_scheduler:deny_sched_setattr
QM_BIN=./bin/QM
ASIL_BIN=./bin/ASIL

all: cratetestqm cratetestasil

cratetestqm: createqmbin file-allocate 90_percent_memory_eat test_sched_setscheduler
cratetestqm: createqmbin file-allocate 90_percent_memory_eat test_sched_setscheduler execute_sched_setattr

cratetestasil: createasilbin 20_percent_memory_eat

Expand All @@ -29,6 +29,9 @@ file-allocate: file-allocate.c
test_sched_setscheduler: execute_set_scheduler.c
$(CC) $(CFLAGS) -o $(QM_BIN)/$@ $<

execute_sched_setattr: execute_sched_setattr.c
$(CC) $(CFLAGS) -o $(QM_BIN)/$@ $<

clean:
rm -rf $(QM_BIN) $(ASIL_QM)

Expand Down
Loading