1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Make test_conf return failure status on failure!

Ahem. Of course I've been running it interactively until now, so I
never noticed that I'd forgotten to fill in that important point. But
now it's run as part of my build, it should make sure to fail if it
fails.
This commit is contained in:
Simon Tatham 2023-09-22 15:15:11 +01:00
parent 8e95208377
commit 41b4f78b9b

View File

@ -769,5 +769,5 @@ void test_simple(void)
int main(void)
{
test_simple();
return 0;
return nfails != 0;
}