On Tue, Apr 28, 2015 at 01:55:42PM -0700, Steve Ellcey wrote:
> Has anyone run the GCC testsuite using a --param option? I am trying
> to do something like:
>
> export RUNTESTFLAGS='--target_board=multi-sim/--param foo=1'
> make check
>
> But the space in the '--param foo=1' option is causing dejagnu to fail.
> Perhaps there is a way to specify a param value without a space in the
> option? If there is I could not find it.
>
> I tried:
>
> export RUNTESTFLAGS='--target_board=multi-sim/--param\ foo=1'
> export RUNTESTFLAGS='--target_board=multi-sim/--param/foo=1'
Have you tried
export RUNTESTFLAGS='--target_board=multi-sim/--param=foo=1'
?
Jakub