X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Ftests%2Fscannerapi.c;h=0505e47d1f8a43c70f221b3ffa09bde0de954d28;hb=ea4f9ce8a060d53cbc299e4c384089f6cc926caa;hp=85cd92c15e4b17c95d9f738191e7845969d7f7c8;hpb=73ca8b47540d005d5227c03aac143d6780da654c;p=platform%2Fupstream%2Fglib.git diff --git a/glib/tests/scannerapi.c b/glib/tests/scannerapi.c index 85cd92c..0505e47 100644 --- a/glib/tests/scannerapi.c +++ b/glib/tests/scannerapi.c @@ -14,9 +14,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library; if not, see . */ #include #include @@ -62,14 +60,16 @@ static void test_scanner_error (ScannerFixture *fix, gconstpointer test_data) { - if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR)) + if (g_test_subprocess ()) { int pe = fix->scanner->parse_errors; g_scanner_error (fix->scanner, "scanner-error-message-test"); g_assert_cmpint (fix->scanner->parse_errors, ==, pe + 1); exit (0); } - g_test_trap_assert_passed(); + + g_test_trap_subprocess (NULL, 0, 0); + g_test_trap_assert_passed (); g_test_trap_assert_stderr ("*scanner-error-message-test*"); }