Skip to content
This repository was archived by the owner on Aug 11, 2021. It is now read-only.

Commit 830ce74

Browse files
committed
[tests] Fixes #334. EmbedStaticIntoDynamicLibrary now tested with MakeFile build mode
1 parent 50d7c9b commit 830ce74

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
15-May-2017 Fixes #334. Following tests are now tested in Linux with additional build modes: ObjectiveCTest1 (Native,MakeFile); ProceduralHeaderTest1 (MakeFile); DeltaSettingsTest1 (MakeFile).
1+
15-May-2017 Fixes #334. Following tests are now tested in Linux with additional build modes: ObjectiveCTest1 (Native,MakeFile); ProceduralHeaderTest1 (MakeFile); DeltaSettingsTest1 (MakeFile); EmbedStaticIntoDynamicLibrary (MakeFile).
22

33
14-May-2017 Fixes #331. Added C.PatchUtilities static utility class, with the helper functions GetCompiler and GetBitDepth. These are useful in static patch functions, that only have the Module property on the settings input to determine compiler versions and the architecture built for. When patch lambdas are inlined into the Init() function of a module, access to module's properties are immediately available, but in static patch functions, these utilities are recommended. Test8 has been updated to illustrate using the PatchUtilities functions.
44

tests/bamtests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ def configure_repository():
9292
linux={"Native": [gcc64, gcc32], "MakeFile": [gcc64, gcc32]},
9393
osx={"Native": [clang64, clang32], "MakeFile": [clang64, clang32]})
9494
configs["EmbedStaticIntoDynamicLibrary"] = TestSetup(win={"Native": [visualc64, visualc32, mingw32], "VSSolution": [visualc64, visualc32]},
95-
linux={"Native": [gcc64, gcc32]},
96-
osx={"Native": [clang64, clang32]})
95+
linux={"Native": [gcc64, gcc32], "MakeFile": [gcc64, gcc32]},
96+
osx={"Native": [clang64, clang32], "MakeFile": [clang64, clang32]})
9797
configs["LinkPrebuiltLibrary"] = TestSetup(win={"Native": [visualc64, visualc32, mingw32], "VSSolution": [visualc64, visualc32]},
9898
linux={"Native": [gcc64, gcc32], "MakeFile": [gcc64, gcc32]},
9999
osx={"Native": [clang64, clang32], "MakeFile": [clang64, clang32], "Xcode": [clang64, clang32]})

0 commit comments

Comments
 (0)