2023-08-30 17:31:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#
|
2023-10-24 12:59:35 +02:00
|
|
|
# Invokes runlitmus.sh and judgelitmus.sh on its arguments to run the
|
|
|
|
# specified litmus test and pass judgment on the results.
|
2023-08-30 17:31:07 +02:00
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# checklitmus.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, 2018
|
|
|
|
#
|
2023-10-24 12:59:35 +02:00
|
|
|
# Author: Paul E. McKenney <paulmck@linux.ibm.com>
|
2023-08-30 17:31:07 +02:00
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
scripts/runlitmus.sh $1
|
|
|
|
scripts/judgelitmus.sh $1
|