summaryrefslogtreecommitdiff
path: root/test/run-tests.h
diff options
context:
space:
mode:
authorPhilip Chimento <philip@endlessm.com>2013-09-26 13:32:58 -0700
committerPhilip Chimento <philip@endlessm.com>2013-09-26 14:32:23 -0700
commita1129813f76b08515522af2be3e93a9994d47dfc (patch)
treeaa817b9b4fd182fe00d5f00415199c04064e5e71 /test/run-tests.h
parenta8d9e4a761edcd714642fc59539430c7f15f23fa (diff)
Run all tests with unique application ID
Running tests with the same application ID causes DBus collisions. Apparently this did not cause problems until now. [endlessm/eos-sdk#303]
Diffstat (limited to 'test/run-tests.h')
-rw-r--r--test/run-tests.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/run-tests.h b/test/run-tests.h
index 88a57d5..8947a5a 100644
--- a/test/run-tests.h
+++ b/test/run-tests.h
@@ -4,7 +4,6 @@
#define RUN_TESTS_H
#define TEST_LOG_DOMAIN "EndlessSDK"
-#define TEST_APPLICATION_ID "com.endlessm.example.test"
#define ADD_APP_WINDOW_TEST(path, test_func) \
g_test_add ((path), AppWindowTestFixture, (test_func), \
@@ -17,6 +16,8 @@ typedef struct
EosApplication *app;
} AppWindowTestFixture;
+gchar *generate_unique_app_id (void);
+
void app_window_test_fixture_setup (AppWindowTestFixture *fixture,
gconstpointer callback);