Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
d9313e0
Documentation
LICENSES
arch
block
certs
crypto
drivers
fs
include
init
io_uring
ipc
kernel
lib
mm
net
rust
samples
scripts
security
sound
tools
accounting
arch
bootconfig
bpf
build
certs
cgroup
counter
debugging
edid
firewire
firmware
gpio
hv
iio
include
io_uring
kvm
laptop
leds
lib
memory-model
Documentation
litmus-tests
scripts
README
checkalllitmus.sh
checkghlitmus.sh
checklitmus.sh
checklitmushist.sh
cmplitmushist.sh
initlitmushist.sh
judgelitmus.sh
newlitmushist.sh
parseargs.sh
runlitmus.sh
runlitmushist.sh
simpletest.sh
.gitignore
README
linux-kernel.bell
linux-kernel.cat
linux-kernel.cfg
linux-kernel.def
lock.cat
mm
net
objtool
pci
pcmcia
perf
power
rcu
scripts
spi
testing
thermal
time
tracing
usb
verification
virtio
wmi
Makefile
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
.rustfmt.toml
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
tools
/
memory-model
/
scripts
/
runlitmus.sh
Copy path
Blame
Blame
Latest commit
History
History
executable file
·
80 lines (72 loc) · 2.41 KB
Breadcrumbs
linux
/
tools
/
memory-model
/
scripts
/
runlitmus.sh
Top
File metadata and controls
Code
Blame
executable file
·
80 lines (72 loc) · 2.41 KB
Raw
#!/bin/sh # SPDX-License-Identifier: GPL-2.0+ # # Without the -hw argument, runs a herd7 test and outputs verification # results to a file whose name is that of the specified litmus test, # but with ".out" appended. # # If the --hw argument is specified, this script translates the .litmus # C-language file to the specified type of assembly and verifies that. # But in this case, litmus tests using complex synchronization (such as # locking, RCU, and SRCU) are cheerfully ignored. # # Either way, return the status of the herd7 command. # # Usage: # runlitmus.sh file.litmus # # Run this in the directory containing the memory model, specifying the # pathname of the litmus test to check. The caller is expected to have # properly set up the LKMM environment variables. # # Copyright IBM Corporation, 2019 # # Author: Paul E. McKenney <paulmck@linux.ibm.com> litmus=$1 if test -f "$litmus" -a -r "$litmus" then : else echo ' !!! ' error: \"$litmus\" is not a readable file exit 255 fi if test -z "$LKMM_HW_MAP_FILE" -o ! -e $LKMM_DESTDIR/$litmus.out then # LKMM run herdoptions=${LKMM_HERD_OPTIONS--conf linux-kernel.cfg} echo Herd options: $herdoptions > $LKMM_DESTDIR/$litmus.out /usr/bin/time $LKMM_TIMEOUT_CMD herd7 $herdoptions $litmus >> $LKMM_DESTDIR/$litmus.out 2>&1 ret=$? if test -z "$LKMM_HW_MAP_FILE" then exit $ret fi echo " --- " Automatically generated LKMM output for '"'--hw $LKMM_HW_MAP_FILE'"' run fi # Hardware run T=/tmp/checklitmushw.sh.$$ trap 'rm -rf $T' 0 2 mkdir $T # Generate filenames mapfile="Linux2${LKMM_HW_MAP_FILE}.map" themefile="$T/${LKMM_HW_MAP_FILE}.theme" herdoptions="-model $LKMM_HW_CAT_FILE" hwlitmus=`echo $litmus | sed -e 's/\.litmus$/.litmus.'${LKMM_HW_MAP_FILE}'/'` hwlitmusfile=`echo $hwlitmus | sed -e 's,^.*/,,'` # Don't run on litmus tests with complex synchronization if ! scripts/simpletest.sh $litmus then echo ' --- ' error: \"$litmus\" contains locking, RCU, or SRCU exit 254 fi # Generate the assembly code and run herd7 on it. gen_theme7 -n 10 -map $mapfile -call Linux.call > $themefile jingle7 -v -theme $themefile $litmus > $LKMM_DESTDIR/$hwlitmus 2> $T/$hwlitmusfile.jingle7.out if grep -q "Generated 0 tests" $T/$hwlitmusfile.jingle7.out then echo ' !!! ' jingle7 failed, errors in $hwlitmus.err cp $T/$hwlitmusfile.jingle7.out $LKMM_DESTDIR/$hwlitmus.err exit 253 fi /usr/bin/time $LKMM_TIMEOUT_CMD herd7 $LKMM_DESTDIR/$hwlitmus > $LKMM_DESTDIR/$hwlitmus.out 2>&1 exit $?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
You can’t perform that action at this time.