diff --git a/testsuite/expect/README b/testsuite/expect/README index 3111e0ef15890819839b208f8c00775dc206dcc7..f92962aa06760ade9b20c350421f14f49ff6615e 100644 --- a/testsuite/expect/README +++ b/testsuite/expect/README @@ -127,7 +127,7 @@ test1.31 Verify that SLURM directed environment variables are processed: SLURM_STDOUTMODE. test1.32 Test of srun signal forwarding test1.33 Test of srun application exit code reporting -test1.34 REMOVED +test1.34 Test of task signal abort message test1.35 Test of batch job with multiple concurrent job steps test1.36 Test parallel launch of srun (e.g. "srun srun hostname") test1.37 REMOVED diff --git a/testsuite/expect/test1.34 b/testsuite/expect/test1.34 new file mode 100755 index 0000000000000000000000000000000000000000..9a7f0e83a767b0f33f8072bfca70f99291aa36ec --- /dev/null +++ b/testsuite/expect/test1.34 @@ -0,0 +1,87 @@ +#!/usr/bin/expect +############################################################################ +# Purpose: Test of SLURM functionality +# Test of task signal abort message +# +# Output: "TEST: #.#" followed by "SUCCESS" if test was successful, OR +# "FAILURE: ..." otherwise with an explanation of the failure, OR +# anything else indicates a failure mode that must be investigated. +############################################################################ +# Copyright (C) 2002-2007 The Regents of the University of California. +# Copyright (C) 2008 Lawrence Livermore National Security +# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). +# Written by Morris Jette <jette1@llnl.gov> +# LLNL-CODE-402394. +# +# This file is part of SLURM, a resource management program. +# For details, see <http://www.llnl.gov/linux/slurm/>. +# +# SLURM is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation; either version 2 of the License, or (at your option) +# any later version. +# +# SLURM 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 General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along +# with SLURM; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +############################################################################ +source ./globals + +set test_id "1.34" +set exit_code 0 +set test_prog "test$test_id.prog" + +print_header $test_id + +if {[test_front_end] != 0} { + send_user "\nWARNING: This test is incompatable with front-end systems\n" + exit 0 +} + +# +# Delete left-over program and rebuild it +# +file delete $test_prog + +exec $bin_make -f /dev/null $test_prog +exec $bin_chmod 700 $test_prog + +# +# Spawn program and check for task exit messages from srun +# +set matches 0 +set timeout $max_job_delay +set srun_pid [spawn $srun -n1 -O $test_prog] +expect { + -re "Segmentation.*core dumped" { + send_user "This error was expected, no worries\n" + incr matches + exp_continue + } + timeout { + send_user "\nFAILURE: srun not responding\n" + slow_kill $srun_pid + set exit_code 1 + } + eof { + wait + } +} +if {$matches != 1} { + send_user "\nFAILURE: srun failed to report exit code\n" + set exit_code 1 +} + +# +# Post-processing +# +if {$exit_code == 0} { + exec $bin_rm -f $test_prog + send_user "\nSUCCESS\n" +} +exit $exit_code diff --git a/testsuite/expect/test1.34.prog.c b/testsuite/expect/test1.34.prog.c new file mode 100644 index 0000000000000000000000000000000000000000..d51a6c56ecbb22af89812c1b65ad205ac7bcfdae --- /dev/null +++ b/testsuite/expect/test1.34.prog.c @@ -0,0 +1,33 @@ +/*****************************************************************************\ + * test1.34.prog.c - Sleep for a second and terminate with SIGSEGV + ***************************************************************************** + * Copyright (C) 2008 Lawrence Livermore National Security. + * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). + * Written by Morris Jette <jette1@llnl.gov> + * LLNL-CODE-402394. + * + * This file is part of SLURM, a resource management program. + * For details, see <http://www.llnl.gov/linux/slurm/>. + * + * SLURM is free software; you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free + * Software Foundation; either version 2 of the License, or (at your option) + * any later version. + * + * SLURM 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 General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along + * with SLURM; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +\*****************************************************************************/ +int main (int argc, char *argv[]) +{ + char *buffer; + + buffer = (char *) 0; + buffer[1] = 'a'; + return; +}