File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed
Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -71,11 +71,11 @@ jobs:
7171
7272 - name : Run tests (Debug)
7373 working-directory : ${{env.DEBUG_BUILD_DIR}}
74- run : .\hic-tests- dbg.exe --gtest_output=xml:hic-tests -dbg.xml
74+ run : .\hktests- dbg.exe --gtest_output=xml:hktests -dbg.xml
7575
7676 - name : Run tests (Release)
7777 working-directory : ${{env.RELEASE_BUILD_DIR}}
78- run : .\hic-tests- rel.exe --gtest_output=xml:hic-tests -rel.xml
78+ run : .\hktests- rel.exe --gtest_output=xml:hktests -rel.xml
7979
8080 # Each file is differently named by adding the job name of the matrix as a suffix.
8181 # This enables the "Unit Test Result" display to show all individual test runs of the matrix.
8686 with :
8787 name : test-results
8888 path : |
89- ${{env.DEBUG_BUILD_DIR}}\hic-tests -dbg.xml
90- ${{env.RELEASE_BUILD_DIR}}\hic-tests -rel.xml
89+ ${{env.DEBUG_BUILD_DIR}}\hktests -dbg.xml
90+ ${{env.RELEASE_BUILD_DIR}}\hktests -rel.xml
9191
9292#
9393# - name: 📑 Generate CodeCoverage Report (Debug)
Original file line number Diff line number Diff line change 1010#include < algorithm>
1111#include < utility>
1212#include < cassert>
13+ #include < exception>
1314
1415namespace hk {
1516
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class progress {
128128 template <typename ... Args>
129129 progress (std::format_string<Args...> fmt, Args&&... args) : _msg(std::format(std::move(fmt), std::forward<Args...>(args)...))
130130 {
131- update ();
131+ // update();
132132 }
133133
134134 progress& operator =(float value)
@@ -159,7 +159,7 @@ class progress {
159159 void set_message (std::format_string<Args...> fmt, Args&&... args)
160160 {
161161 _msg = std::format (std::move (fmt), std::forward<Args...>(args)...);
162- update ();
162+ // update();
163163 }
164164
165165private:
Original file line number Diff line number Diff line change 55#include < chrono>
66#include < system_error>
77#include < print>
8+ #include < exception>
89
910namespace hk {
1011
You can’t perform that action at this time.
0 commit comments