~ubuntu-branches/ubuntu/vivid/slurm-llnl/vivid

« back to all changes in this revision

Viewing changes to testsuite/expect/test1.38

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2009-09-24 23:28:15 UTC
  • mfrom: (1.1.11 upstream) (3.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090924232815-enh65jn32q1ebg07
Tags: 2.0.5-1
* New upstream release 
* Changed dependecy from lib-mysqlclient15 to lib-mysqlclient 
* Added Default-Start for runlevel 2 and 4 and $remote_fs requirement in
  init.d scripts (Closes: #541252)
* Postinst checks for wrong runlevels 2 and 4 links
* Upgraded to standard version 3.8.3
* Add lintian overrides for missing slurm-llnl-configurator.html in doc
  base registration
* modified postrm scripts to ignore pkill return value in order to avoid
  postrm failure when no slurm process is running
* Checking for slurmctld.pid before cancelling running and pending
  jobs during package removal 

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
# Copyright (C) 2008 Lawrence Livermore National Security.
13
13
# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
14
14
# Written by Morris Jette <jette1@llnl.gov>
15
 
# LLNL-CODE-402394.
 
15
# CODE-OCEC-09-009. All rights reserved.
16
16
17
17
# This file is part of SLURM, a resource management program.
18
 
# For details, see <http://www.llnl.gov/linux/slurm/>.
 
18
# For details, see <https://computing.llnl.gov/linux/slurm/>.
 
19
# Please also read the included file: DISCLAIMER.
19
20
#  
20
21
# SLURM is free software; you can redistribute it and/or modify it under
21
22
# the terms of the GNU General Public License as published by the Free
109
110
        }
110
111
}
111
112
if {[expr $match_run + $match_wait + $match_term] != 3} {
112
 
        send_user "\nFAILURE: srun failed to properly process SIGINT matches was $matches\n"
 
113
        send_user "\nFAILURE: srun failed to properly process SIGINT matches was $match_run $match_wait $match_term\n"
113
114
        set exit_code 1
114
115
}
115
116
 
141
142
                set match_run 999
142
143
                exp_continue
143
144
        }
144
 
        -re "forcing job termination" {
 
145
        -re "Job step aborted" {
145
146
                set match_term 1
146
147
                exp_continue
147
148
        }
156
157
}
157
158
cancel_job $job_id
158
159
if {[expr $match_run + $match_wait + $match_term] != 2} {
159
 
        send_user "\nFAILURE: srun failed to properly process SIGINT\n"
 
160
        send_user "\nFAILURE: srun failed to properly process SIGINT $match_run $match_wait $match_term\n"
160
161
        set exit_code 1
161
162
}
162
163