Skip to content
Snippets Groups Projects
Commit 7d89e624 authored by Morris Jette's avatar Morris Jette
Browse files

Merge branch 'slurm-16.05'

parents 371c6d8c b201faed
No related branches found
No related tags found
No related merge requests found
......@@ -305,6 +305,8 @@ Denis Trystram (University Grenoble-Alpes)</li>
Yiannis Georgiou and David Glesser (Bull),
Krzysztof Rzadca (University of Warsaw),
Denis Trystram (University Grenoble-Alpes)</li>
<li><a href="SUG14/data_movement.pdf">High Performance Data movement between Lustre and Enterprise storage systems</a>
Aamir Rashid (Terascala)</li>
<li><a href="SUG14/remote_gpu.pdf">Extending Slurm with Support for Remote GPU Virtualization</a>
......@@ -775,6 +777,6 @@ Danny Auble of LLNL about Slurm.</p>
Learning Chef: Compute Cluter with Slurm</a>
A Slurm Cookbook by Adam DeConinck</p>
<p style="text-align:center;">Last modified 29 November 2016</p>
<p style="text-align:center;">Last modified 12 January 2017</p>
<!--#include virtual="footer.txt"-->
......@@ -42,6 +42,28 @@ set output_use "test$test_id.use.output"
set script_use "test$test_id.use.bash"
set tmp_file "test$test_id"
#
# get my uid and clear any vestigial triggers
#
set uid -1
spawn $bin_id -u
expect {
-re "($number)" {
set uid $expect_out(1,string)
exp_continue
}
eof {
wait
}
}
if {$uid == -1} {
send_user "\nCan't get my uid\n"
exit 1
} elseif {$uid == 0} {
send_user "\nWARNING: Can't run this test as user root\n"
exit 0
}
proc find_bb_jobid { fname bb_jobid } {
global bin_cat
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment