Hi - These errors seem odd.. some ideas below:
On 3/6/17, 2:41 AM, "sri raj paul" <[email protected]> wrote: > > > >Helloo All, >I am trying to run the Chapel test suite from the chapel code base >(https://github.com/chapel-lang/chapel/tree/master/test/parallel). >To run them, I go to the target folder and call >“$CHPL_HOME/util/start_test” >Most test cases are passing, But few of them are failing. The failure is >because, it is trying to execute files that are meant to be just read >parameters from. > > >Error messages are line, <snip> > >"[Error processing .skipif file >/chapel-master/test/parallel/bundles/bundles-multilocale.skipif] >/chapel-master/test/parallel/serial/figueroa/MultiLocaleSerial.skipif: >line 2: CHPL_COMM: command not found” Is MultiLocaleSerial.skipif marked executable? Try using ls -l to see (and use Google if you need help knowing how to check if a file is executable). The test system interprets executable setting files as scripts that it should run to generate the settings. It probably should check for it starting with #! in addition. I haven't checked that it doesn't do so - but if it doesn't, that's shouldn't be hard to fix and would probably be a good change for you to contribute if you are interested. Cheers, -michael > > >Is there a way get around this problem? > > >Thank you >Sriraj > > ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org! http://sdm.link/slashdot _______________________________________________ Chapel-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/chapel-developers
