Displaying 3 results from an estimated 3 matches for "n_fail".
Did you mean:
e_fail
2009 Aug 28
1
[PATCHES] avoid more warnings
...de81a7d930a6a2ad558eff9396da20237e06ccc1 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Fri, 28 Aug 2009 14:07:35 +0200
Subject: [PATCH libguestfs 3/3] generator.ml: avoid a warning about signed overflow in tests.c
* src/generator.ml: Emit "unsigned long int n_failed;" rather than
"int failed;", to avoid warning from gcc about "assuming signed
overflow does not occur when simplifying conditional to constant".
---
src/generator.ml | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/generator.ml b/src/ge...
2012 Feb 29
4
Windows Puppet 2.7.12rc1-7-g281901e hands at end of run
.../application.rb:
309:in `run''
C:/Dev/tools/Ruby187/lib/ruby/site_ruby/1.8/puppet/application.rb:
416:in `hook''
C:/Dev/tools/Ruby187/lib/ruby/site_ruby/1.8/puppet/application.rb:
309:in `run''
C:/Dev/tools/Ruby187/lib/ruby/site_ruby/1.8/puppet/application.rb:
407:in `exit_o
n_fail''
C:/Dev/tools/Ruby187/lib/ruby/site_ruby/1.8/puppet/application.rb:
309:in `run''
C:/Dev/tools/Ruby187/lib/ruby/site_ruby/1.8/puppet/util/
command_line.rb:69:in `e
xecute''
C:/Dev/tools/Ruby187/bin/puppet:4
err: Failed to apply catalog: Parameter source failed: Cannot use
r...
2009 Nov 20
1
fix new failures from latest-from-gnulib syntax-check
...FAILURE);
}
if (guestfs_launch (g) == -1) {
printf (\"guestfs_launch FAILED\\n\");
- exit (1);
+ exit (EXIT_FAILURE);
}
/* Set a timeout in case qemu hangs during launch (RHBZ#505329). */
@@ -6105,11 +6105,11 @@ int main (int argc, char *argv[])
pr " if (n_failed > 0) {\n";
pr " printf (\"***** %%lu / %%d tests FAILED *****\\n\", n_failed, nr_tests);\n";
- pr " exit (1);\n";
+ pr " exit (EXIT_FAILURE);\n";
pr " }\n";
pr "\n";
- pr " exit (0);\n";
+ pr &q...