test: print test name before run
authorU. Artie Eoff <ullysses.a.eoff@intel.com>
Fri, 25 Jan 2013 21:23:31 +0000 (13:23 -0800)
committerU. Artie Eoff <ullysses.a.eoff@intel.com>
Fri, 25 Jan 2013 21:23:31 +0000 (13:23 -0800)
Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com>
src/common/test.h
src/core/display.cpp

index 5dd5ae0..d31fadf 100644 (file)
@@ -52,6 +52,7 @@ typedef Singleton<GlobalTestSuite> TheGlobalTestSuite;
        public: \
        START_TEST(ck_ ## name) \
        { \
+               std::cout << suite "/" # name << std::endl; \
                run(); \
        } \
        END_TEST \
index db78b4f..859e949 100644 (file)
@@ -44,6 +44,8 @@ void Display::dispatch() const
 
        ASSERT(display->wl_registry_ == wl_registry);
 
+       // FIXME: With multi-display, we get multiple wl_output global
+       // interface's presented to us.
        display->globals_[std::string(interface)] = GlobalInfo(id, version);
 }