summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/genie/tests/actions/xcode/test_xcode4_project.lua
diff options
context:
space:
mode:
author Julian Sikorski <belegdol+github@gmail.com>2019-09-29 15:30:18 +0200
committer R. Belmont <rb6502@users.noreply.github.com>2019-09-29 09:30:18 -0400
commited2b7e5ef1626c0d6318b6ea71897efbb4356277 (patch)
tree62a84a4a2c804922839dbfa60ec664b84beaaee0 /3rdparty/genie/tests/actions/xcode/test_xcode4_project.lua
parent1bd1288c9e17bdba9544d1e56be7618106fece7e (diff)
Synced with GENie upstream revision e78d6c1 (#5631)
* Synced with GENie upstream revision e78d6c1 * Add Visual Studio 2019 support * Fix hardcoded -m64 * Switch appveyor to Visual Studio 2019 * Fix genie being built as 32-bit * MSVC build is known to be broken currently. Let it fail until all the known issues are fixed. * Update the packages before building * Build with 3 threads Appveyor VMs have only 2 cores and 8 GB RAM. * Enable caching of pacman cache
Diffstat (limited to '3rdparty/genie/tests/actions/xcode/test_xcode4_project.lua')
-rw-r--r--3rdparty/genie/tests/actions/xcode/test_xcode4_project.lua60
1 files changed, 0 insertions, 60 deletions
diff --git a/3rdparty/genie/tests/actions/xcode/test_xcode4_project.lua b/3rdparty/genie/tests/actions/xcode/test_xcode4_project.lua
deleted file mode 100644
index aa7224a2940..00000000000
--- a/3rdparty/genie/tests/actions/xcode/test_xcode4_project.lua
+++ /dev/null
@@ -1,60 +0,0 @@
---
--- tests/actions/xcode/test_xcode4_project.lua
--- Automated test suite for Xcode project generation.
--- Copyright (c) 2011 Jason Perkins and the Premake project
---
-
- T.xcode4_project = { }
-
- local suite = T.xcode4_project
- local xcode = premake.xcode
-
-
----------------------------------------------------------------------------
--- Setup/Teardown
----------------------------------------------------------------------------
-
- local sln, tr
- function suite.setup()
- _OS = "macosx"
- _ACTION = "xcode4"
- io.eol = "\n"
- xcode.used_ids = { } -- reset the list of generated IDs
- sln = test.createsolution()
- end
-
- local function prepare()
- premake.bake.buildconfigs()
- xcode.preparesolution(sln)
- local prj = premake.solution.getproject(sln, 1)
- tr = xcode.buildprjtree(prj)
- end
-
-
----------------------------------------------------------------------------
--- XCBuildConfiguration_Project tests
----------------------------------------------------------------------------
-
- function suite.XCBuildConfigurationProject_OnSymbols()
- flags { "Symbols" }
- prepare()
- xcode.XCBuildConfiguration_Project(tr, tr.configs[1])
- test.capture [[
- [MyProject:Debug(2)] /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = "$(NATIVE_ARCH_ACTUAL)";
- CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
- COPY_PHASE_STRIP = NO;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- OBJROOT = "obj/Debug";
- ONLY_ACTIVE_ARCH = YES;
- };
- name = "Debug";
- };
- ]]
- end