Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
And now get doxygen AND compilation AND testsuite working at the same time. I get...
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sun, 23 Oct 2005 17:48:21 +0000 (17:48 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sun, 23 Oct 2005 17:48:21 +0000 (17:48 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1827 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/xbt/config.c

index 0dadc2f..8c91ca0 100644 (file)
@@ -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);
     }