diff options
author | Ron Martin <cpuwzd@comcast.net> | 2022-04-08 20:05:40 -0400 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-04-13 10:21:23 -0500 |
commit | 68e54edc630099137b30ab946a80a8231a0d3d44 (patch) | |
tree | fa5db883fbb62c1335fd0f1a462e66814aa4cec0 /src/libs/dutil/test/DUtilUnitTest | |
parent | 75f4dce4ea53b82f99932573f27ccfc799d0c5c1 (diff) | |
download | wix-68e54edc630099137b30ab946a80a8231a0d3d44.tar.gz wix-68e54edc630099137b30ab946a80a8231a0d3d44.tar.bz2 wix-68e54edc630099137b30ab946a80a8231a0d3d44.zip |
Fix "flaky" DUtil test.
Diffstat (limited to 'src/libs/dutil/test/DUtilUnitTest')
-rw-r--r-- | src/libs/dutil/test/DUtilUnitTest/DUtilTests.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/dutil/test/DUtilUnitTest/DUtilTests.cpp b/src/libs/dutil/test/DUtilUnitTest/DUtilTests.cpp index c3ac6a79..d92a9272 100644 --- a/src/libs/dutil/test/DUtilUnitTest/DUtilTests.cpp +++ b/src/libs/dutil/test/DUtilUnitTest/DUtilTests.cpp | |||
@@ -11,7 +11,7 @@ namespace DutilTests | |||
11 | public ref class DUtil | 11 | public ref class DUtil |
12 | { | 12 | { |
13 | public: | 13 | public: |
14 | [Fact(Skip = "Flaky")] | 14 | [Fact] |
15 | void DUtilTraceErrorSourceFiltersOnTraceLevel() | 15 | void DUtilTraceErrorSourceFiltersOnTraceLevel() |
16 | { | 16 | { |
17 | DutilInitialize(&DutilTestTraceError); | 17 | DutilInitialize(&DutilTestTraceError); |
@@ -21,7 +21,8 @@ namespace DutilTests | |||
21 | Dutil_TraceSetLevel(REPORT_DEBUG, FALSE); | 21 | Dutil_TraceSetLevel(REPORT_DEBUG, FALSE); |
22 | 22 | ||
23 | Action^ action = gcnew Action(this, &DUtil::CallDutilTraceErrorSource); | 23 | Action^ action = gcnew Action(this, &DUtil::CallDutilTraceErrorSource); |
24 | Assert::Throws<Exception^>(action); | 24 | // See the comments in WixBuildTools.WixAssert for details. |
25 | WixAssert::Throws<Exception^>(action); | ||
25 | 26 | ||
26 | DutilUninitialize(); | 27 | DutilUninitialize(); |
27 | } | 28 | } |