Skip to content
Snippets Groups Projects
Commit a772fc04 authored by Danny Auble's avatar Danny Auble
Browse files

up memory constraint (I think something happened with glibc or the kernel)

no big deal, but now we get just a bit more memory allocated (4152 over
instead of the 4100 we were previously looking for)
parent 2c500639
No related branches found
No related tags found
No related merge requests found
...@@ -116,7 +116,7 @@ proc _get_mem {prog} { ...@@ -116,7 +116,7 @@ proc _get_mem {prog} {
# Compute error in KB # Compute error in KB
set diff_mem [expr $mem_used - $mem_size] set diff_mem [expr $mem_used - $mem_size]
set error_mem [expr abs($diff_mem)] set error_mem [expr abs($diff_mem)]
if {$error_mem > 4100} { if {$error_mem > 4200} {
send_user "\nFAILURE: sstat memory use discrepancy of $error_mem KB\n" send_user "\nFAILURE: sstat memory use discrepancy of $error_mem KB\n"
send_user " Wanted $mem_size KB, got $mem_used KB\n" send_user " Wanted $mem_size KB, got $mem_used KB\n"
return 1 return 1
...@@ -189,7 +189,7 @@ expect { ...@@ -189,7 +189,7 @@ expect {
-re "Requested node configuration is not available" { -re "Requested node configuration is not available" {
set config_prob 1 set config_prob 1
exp_continue exp_continue
} }
-re "Submitted batch job ($number)" { -re "Submitted batch job ($number)" {
set job_id $expect_out(1,string) set job_id $expect_out(1,string)
exp_continue exp_continue
......
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