sstsimulator / sst-macro

SST Macro Element Library
http://sst-simulator.org/
Other
34 stars 41 forks source link

Need to fail when ini file isn't valid #576

Open calewis opened 3 years ago

calewis commented 3 years ago

The following ini file will run just fine, but env will be empty

include debug.ini

node {
 app1 {
  launch_cmd = aprun -n 1 -N 1
  argv=
  exe = ./a.out
  env = {
    OMP_NUM_THREADS=48
  }
 }
 os {
  stack_size = 1MB
 }
}

There is an = after env that shouldn't be there, but no warnings or errors are given, it just silently fails to parse the variable.