aboutsummaryrefslogtreecommitdiff
path: root/src/burn/test/BurnUnitTest/ManifestTest.cpp
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-08-03 15:41:18 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-08-04 10:03:57 -0500
commit6d7a275edafb3ae0f3cff94d66503a82dafb71f7 (patch)
treefae8f75e2cd1d7b179b0ed93e15625d68ba7c441 /src/burn/test/BurnUnitTest/ManifestTest.cpp
parented57d171f6fb6bb4e180696cc12caa568599566a (diff)
downloadwix-6d7a275edafb3ae0f3cff94d66503a82dafb71f7.tar.gz
wix-6d7a275edafb3ae0f3cff94d66503a82dafb71f7.tar.bz2
wix-6d7a275edafb3ae0f3cff94d66503a82dafb71f7.zip
Replace static cache internals with a struct.
Initialize them explicitly to make it clearer when that happens.
Diffstat (limited to 'src/burn/test/BurnUnitTest/ManifestTest.cpp')
-rw-r--r--src/burn/test/BurnUnitTest/ManifestTest.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/burn/test/BurnUnitTest/ManifestTest.cpp b/src/burn/test/BurnUnitTest/ManifestTest.cpp
index 345ddfd9..6973c772 100644
--- a/src/burn/test/BurnUnitTest/ManifestTest.cpp
+++ b/src/burn/test/BurnUnitTest/ManifestTest.cpp
@@ -40,6 +40,9 @@ namespace Bootstrapper
40 " <CommandLine Variables='upperCase' />" 40 " <CommandLine Variables='upperCase' />"
41 "</Bundle>"; 41 "</Bundle>";
42 42
43 hr = CacheInitialize(&engineState.cache, &engineState.internalCommand);
44 TestThrowOnFailure(hr, L"Failed initialize cache.");
45
43 hr = VariableInitialize(&engineState.variables); 46 hr = VariableInitialize(&engineState.variables);
44 TestThrowOnFailure(hr, L"Failed to initialize variables."); 47 TestThrowOnFailure(hr, L"Failed to initialize variables.");
45 48