| 12345678910111213141516171819202122232425262728293031323334353637 | #!/bin/bash -x# StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2017-2021  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria## StarPU is free software; you can redistribute it and/or modify# it under the terms of the GNU Lesser General Public License as published by# the Free Software Foundation; either version 2.1 of the License, or (at# your option) any later version.## StarPU is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.## See the GNU Lesser General Public License in COPYING.LGPL for more details.## Test a model-checking program with simgrid model checkerSIMGRID_MC=@SIMGRID_MC@abs_top_srcdir=@abs_top_srcdir@abs_builddir=@abs_builddir@set -e[ -x "$SIMGRID_MC" ] || exit 77MC_FLAGS=--cfg=model-check/reduction:none# makes it much longer actually#MC_FLAGS+=--cfg=contexts/factory:ucontext#MC_FLAGS+=--cfg=model-check/sparse-checkpoint:yes#MC_FLAGS+=--cfg=model-check/visited:1000test() {	$SIMGRID_MC $abs_builddir/$1 $abs_top_srcdir/tests/model-checking/platform.xml MAIN $MC_FLAGS}
 |