__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh # SPDX-License-Identifier: GPL-2.0+ # # Reruns the C-language litmus tests previously run that match the # specified criteria, and compares the result to that of the previous # runs from initlitmushist.sh and/or newlitmushist.sh. # # sh checklitmushist.sh # # Run from the Linux kernel tools/memory-model directory. # See scripts/parseargs.sh for list of arguments. # # Copyright IBM Corporation, 2018 # # Author: Paul E. McKenney <[email protected]> . scripts/parseargs.sh T=/tmp/checklitmushist.sh.$$ trap 'rm -rf $T' 0 mkdir $T if test -d litmus then : else echo Run scripts/initlitmushist.sh first, need litmus repo. exit 1 fi # Create the results directory and populate it with subdirectories. # The initial output is created here to avoid clobbering the output # generated earlier. mkdir $T/results find litmus -type d -print | ( cd $T/results; sed -e 's/^/mkdir -p /' | sh ) # Create the list of litmus tests already run, then remove those that # are excluded by this run's --procs argument. ( cd $LKMM_DESTDIR; find litmus -name '*.litmus.out' -print ) | sed -e 's/\.out$//' | xargs -r grep -L "^P${LKMM_PROCS}"> $T/list-C-already xargs < $T/list-C-already -r grep -L "^P${LKMM_PROCS}" > $T/list-C-short # Redirect output, run tests, then restore destination directory. destdir="$LKMM_DESTDIR" LKMM_DESTDIR=$T/results; export LKMM_DESTDIR scripts/runlitmushist.sh < $T/list-C-short > $T/runlitmushist.sh.out 2>&1 LKMM_DESTDIR="$destdir"; export LKMM_DESTDIR # Move the newly generated .litmus.out files to .litmus.out.new files # in the destination directory. cdir=`pwd` ddir=`awk -v c="$cdir" -v d="$LKMM_DESTDIR" \ 'END { if (d ~ /^\//) print d; else print c "/" d; }' < /dev/null` ( cd $T/results; find litmus -type f -name '*.litmus.out' -print | sed -e 's,^.*$,cp & '"$ddir"'/&.new,' | sh ) sed < $T/list-C-short -e 's,^,'"$LKMM_DESTDIR/"',' | sh scripts/cmplitmushist.sh exit $?
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| checkalllitmus.sh | File | 1.76 KB | 0755 |
|
| checkghlitmus.sh | File | 1.85 KB | 0755 |
|
| checklitmus.sh | File | 552 B | 0755 |
|
| checklitmushist.sh | File | 1.88 KB | 0755 |
|
| checktheselitmus.sh | File | 1.12 KB | 0755 |
|
| cmplitmushist.sh | File | 3.24 KB | 0755 |
|
| hwfnseg.sh | File | 415 B | 0755 |
|
| initlitmushist.sh | File | 2.22 KB | 0755 |
|
| judgelitmus.sh | File | 4.6 KB | 0755 |
|
| newlitmushist.sh | File | 1.8 KB | 0755 |
|
| parseargs.sh | File | 3.25 KB | 0755 |
|
| runlitmus.sh | File | 2.42 KB | 0755 |
|
| runlitmushist.sh | File | 2.09 KB | 0755 |
|
| simpletest.sh | File | 856 B | 0755 |
|