Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Unified Diff: chrome/test/browser/run_all_unittests.cc

Issue 115896: Making the browser tests work on Unix (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/browser/run_all_unittests.cc
===================================================================
--- chrome/test/browser/run_all_unittests.cc (revision 17736)
+++ chrome/test/browser/run_all_unittests.cc (working copy)
@@ -7,13 +7,14 @@
#if defined(OS_WIN)
#define DLLEXPORT __declspec(dllexport)
-#elif
+#else
#define DLLEXPORT
+#define CDECL
#endif
// We use extern C for the prototype DLLEXPORT to avoid C++ name mangling.
extern "C" {
-DLLEXPORT int __cdecl RunTests(int argc, char **argv) {
+DLLEXPORT int CDECL RunTests(int argc, char **argv) {
return ChromeTestSuite(argc, argv).Run();
}
}

Powered by Google App Engine
This is Rietveld 408576698