Updates for bazel on windows.

This commit is contained in:
2023-05-17 14:26:26 -07:00
parent a8c0ef05fb
commit 9e8f04e9b4
84 changed files with 2789 additions and 5836 deletions

22
opengl/window_test.cpp Normal file
View File

@@ -0,0 +1,22 @@
#include <tinytest.h>
#include <iostream>
namespace {
using std::cout;
using TinyTest::TestResults;
} // namespace
TestResults test_something() {
return TestResults().Pass();
}
int main(int argc, char* argv[]) {
TestResults results;
results += test_something();
PrintResults(cout, results);
return results.Failed() + results.Errors();
}