Re: WARNING: Couldn't find the global config file.

2020-12-03 Thread Jacob Bachmeyer
Tom Tromey wrote: Jonathan> The manual says "If DEJAGNU is set, but the file cannot be located, an Jonathan> error will be raised and runtest will abort." That makes sense, if I Jonathan> name a file that doesn't exist, I'm doing something wrong. But if I Jonathan> don't name any file, maybe that

Re: WARNING: Couldn't find the global config file.

2020-12-03 Thread Jacob Bachmeyer
Jonathan Wakely wrote: On 03/12/20 13:33 +, Jonathan Wakely wrote: The manual says "If DEJAGNU is set, but the file cannot be located, an error will be raised and runtest will abort." That makes sense, if I name a file that doesn't exist, I'm doing something wrong. Despite the manual sayin

Re: What does "Execution timeout is: $test_timeout" mean?

2020-12-03 Thread Jacob Bachmeyer
Jonathan Wakely wrote: On 02/12/20 21:48 -0600, Jacob Bachmeyer wrote: Jonathan Wakely wrote: Hi, [...] If I set test_timeout in ~/.dejagnurc or site.exp then I do indeed see the value change. But it doesn't do anything. I can set test_timeout to 2 second, and tests that sleep for 20 seconds

Re: WARNING: Couldn't find the global config file.

2020-12-03 Thread Tom Tromey
Jonathan> The manual says "If DEJAGNU is set, but the file cannot be located, an Jonathan> error will be raised and runtest will abort." That makes sense, if I Jonathan> name a file that doesn't exist, I'm doing something wrong. But if I Jonathan> don't name any file, maybe that's because I don't w

Documentation bug for target_list combinations?

2020-12-03 Thread Jonathan Wakely
Sorry to bombard this list with more mails than it usually gets in a month ;-) https://www.gnu.org/software/dejagnu/manual/Global-config-file.html has an example using: set target_list "mips-lsi-sim{,soft-float,el}" which it says will use "all possible combinations of the --soft-float and th

Re: WARNING: Couldn't find the global config file.

2020-12-03 Thread Jonathan Wakely
On 03/12/20 13:33 +, Jonathan Wakely wrote: The manual says "If DEJAGNU is set, but the file cannot be located, an error will be raised and runtest will abort." That makes sense, if I name a file that doesn't exist, I'm doing something wrong. Despite the manual saying it's an error, and the

WARNING: Couldn't find the global config file.

2020-12-03 Thread Jonathan Wakely
The manual is pretty clear that the global site.exp config file is optional, so why does runtest insist on shouting at me when it's not set? WARNING: Couldn't find the global config file. I know I can set DEJAGNU=/dev/null but why do I need to? It's supposed to be optional. If I have to specify

Re: What does "Execution timeout is: $test_timeout" mean?

2020-12-03 Thread Jonathan Wakely
On 02/12/20 21:48 -0600, Jacob Bachmeyer wrote: Jonathan Wakely wrote: Hi, [...] If I set test_timeout in ~/.dejagnurc or site.exp then I do indeed see the value change. But it doesn't do anything. I can set test_timeout to 2 second, and tests that sleep for 20 seconds or more will still PASS