aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar Hoa V. Dinh <dinh.viet.hoa@gmail.com>2014-11-12 13:08:52 -0800
committerGravatar Hoa V. Dinh <dinh.viet.hoa@gmail.com>2014-11-12 13:08:52 -0800
commitc6e5b98886c29a5a759c60693a24bd8b899e4d91 (patch)
tree4011874a5b399f56df19716fa7f201552ff6c71f /tests
parent48a2b0fc621d7bf04232da3fb0f3af608bfb54b1 (diff)
Renamed main.mm to main.cpp
Diffstat (limited to 'tests')
-rw-r--r--tests/main.cpp (renamed from tests/main.mm)11
1 files changed, 2 insertions, 9 deletions
diff --git a/tests/main.mm b/tests/main.cpp
index b17fa0f5..a2855416 100644
--- a/tests/main.mm
+++ b/tests/main.cpp
@@ -6,8 +6,6 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
-#import <Foundation/Foundation.h>
-
#include "test-all.h"
#if __APPLE__
#include "test-all-mac.h"
@@ -15,13 +13,8 @@
int main(int argc, const char * argv[])
{
-
- @autoreleasepool {
-
- testAll();
- testAllMac();
-
- }
+ testAll();
+ testAllMac();
return 0;
}