livuxman wrote:I used the version of the benchmark set by acc24ex and seen that there is a problem (at least in the linux version)
If I try to load directly from the command line with "octane OctaneBenchmark/octane_benchmark\ for\ 1022\ beta\ 2.2rc.ocs" the program exits with:
ERROR: Program executed illegal instruction.. terminating
It seems something related to the treatment of spaces in the name of the files, without them it works perfectly. Loading from within octane works well with spaces.
As Radiance pointed, our argument parser supports quotes to delimit elements with spaces in them. however, when you type it from the shell, the shell interpretes the " and discard them. To prevent that, you should escape them with backslashes too i.e:
$ octane \"OctaneBenchmark/octane_benchmark\ for\ 1022\ beta\ 2.2rc.ocs\"
note that the backslashes for the path are not necessary so
$ octane \"OctaneBenchmark/octane_benchmark for 1022 beta 2.2rc.ocs\"
Will work too....
/M