-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ Reference to non-existing directories in some of catalogue index files. + Change Makefile variable for `make litmus-aarch64-test RUN_TESTS=true` to function.
- Loading branch information
Showing
4 changed files
with
32 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
mmufault/@all | ||
LB+dmb.sy+acq-HU.litmus | ||
LB+dmb.sy+dmb.sy-HU.litmus | ||
LB+dmb.sy+dsb.sy-HU.litmus | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
aob/@all | ||
bob/@all | ||
cse-ob/@all | ||
dob/@all | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#ODROID-C2 compile as armv8.1 | ||
size_of_test = 5k | ||
number_of_run = 200 | ||
avail = 4 | ||
limit = true | ||
memory = direct | ||
stride = 1 | ||
carch = AArch64 | ||
barrier = userfence | ||
smt = 1 | ||
smt_mode = seq | ||
ascall = true | ||
mode = kvm | ||
delay = 32 | ||
makevar = AUXFLAGS=0x0 | ||
makevar = SRCDIR=$(PWD)/.. | ||
makevar = -include $(SRCDIR)/config.mak | ||
makevar = libcflat = $(SRCDIR)/lib/libcflat.a | ||
makevar = libeabi = $(SRCDIR)/lib/arm/libeabi.a | ||
makevar = LIBFDT_archive = $(SRCDIR)/lib/libfdt/libfdt.a | ||
makevar = cstart.o = $(SRCDIR)/arm/cstart64.o | ||
makevar = FLATLIBS = $(libcflat) $(LIBFDT_archive) $(libeabi) | ||
makevar = optional-ccopt = $(shell if $(CC) -Werror $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; fi) | ||
ccopts = -std=gnu99 -ffreestanding -I $(SRCDIR)/lib -I $(SRCDIR)/libfdt -Wall -Werror -fomit-frame-pointer -Wno-frame-address -fno-pic -no-pie -Wmissing-parameter-type -Wold-style-declaration -Woverride-init -O2 $(call optional-ccopt, -mno-outline-atomics) -march=armv8.4-a |