workaround for boost 1.48 issue
authorU. Artie Eoff <ullysses.a.eoff@intel.com>
Fri, 20 Jul 2012 20:46:07 +0000 (13:46 -0700)
committerU. Artie Eoff <ullysses.a.eoff@intel.com>
Fri, 20 Jul 2012 22:42:07 +0000 (15:42 -0700)
Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com>
src/efl/application.cpp

index c035063..9bc8e65 100644 (file)
@@ -4,10 +4,15 @@
 
 Application::Application()
 {
-       elm_init(
-               boost::unit_test::framework::master_test_suite().argc,
-               boost::unit_test::framework::master_test_suite().argv
-       );
+    elm_init(0, NULL);
+
+// FIXME: With boost 1.48 (and F17?) the master test suite argc
+// and argv don't seem to ever get initialized, thus causes a
+// memory access violation.
+//     elm_init(
+//             boost::unit_test::framework::master_test_suite().argc,
+//             boost::unit_test::framework::master_test_suite().argv
+//     );
        setEngine(ENGINE_SHM);
 }