From d8888df4d713c0e6e23ce338e1adbc61a6d0421c Mon Sep 17 00:00:00 2001 From: mquinson Date: Sun, 23 Oct 2005 17:48:21 +0000 Subject: [PATCH] And now get doxygen AND compilation AND testsuite working at the same time. I get somehow tired git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1827 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/xbt/config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xbt/config.c b/src/xbt/config.c index 0dadc2f331..8c91ca0110 100644 --- a/src/xbt/config.c +++ b/src/xbt/config.c @@ -1249,11 +1249,12 @@ XBT_TEST_UNIT("use",test_config_use,"Data retrieving tests") { { /* non-existant_entry */ xbt_cfg_t myset=make_set(); + xbt_ex_t e; TRY { xbt_cfg_set_parse(myset, "color:blue"); } CATCH(e) { - if (e.category != mismatch_error) + if (e.category != not_found_error) xbt_test_exception(e); xbt_ex_free(e); } -- 2.20.1