Forráskód Böngészése

COMP: Disable function call with function return test for HP until it is implemented.

Brad King 19 éve
szülő
commit
55280c5524
1 módosított fájl, 2 hozzáadás és 0 törlés
  1. 2 0
      Source/kwsys/testAutoPtr.cxx

+ 2 - 0
Source/kwsys/testAutoPtr.cxx

@@ -115,12 +115,14 @@ int testAutoPtr(int, char*[])
            "auto_ptr did not release ownership to called function");
            "auto_ptr did not release ownership to called function");
     }
     }
 
 
+#if !defined(__HP_aCC)
     {
     {
     int received = function_call(generate_auto_ptr_A());
     int received = function_call(generate_auto_ptr_A());
     ASSERT(received,
     ASSERT(received,
            "auto_ptr in called function did not take ownership "
            "auto_ptr in called function did not take ownership "
            "from factory function");
            "from factory function");
     }
     }
+#endif
 
 
 #if 0
 #if 0
     // Is this allowed by the standard?
     // Is this allowed by the standard?