mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Add simple test application.
This commit is contained in:
parent
340bf80435
commit
f47b7a1cdf
39
test/Makefile
Normal file
39
test/Makefile
Normal file
@ -0,0 +1,39 @@
|
||||
CFLAGS := -g3 -Wall -fmerge-constants
|
||||
CXXFLAGS := $(CFLAGS) -std=gnu++14
|
||||
DEFINES +=
|
||||
INCLUDES :=
|
||||
LIBS := -lpthread
|
||||
IMAGE := tracy_test
|
||||
|
||||
SRC := \
|
||||
test.cpp \
|
||||
../client/TracyProfiler.cpp \
|
||||
../common/tracy_lz4.cpp \
|
||||
../common/TracySocket.cpp \
|
||||
../common/TracySystem.cpp
|
||||
|
||||
OBJ := $(SRC:%.cpp=%.o)
|
||||
|
||||
all: $(IMAGE)
|
||||
|
||||
%.o: %.cpp
|
||||
$(CXX) -c $(INCLUDES) $(CXXFLAGS) $(DEFINES) $< -o $@
|
||||
|
||||
%.d : %.cpp
|
||||
@echo Resolving dependencies of $<
|
||||
@mkdir -p $(@D)
|
||||
@$(CXX) -MM $(INCLUDES) $(CXXFLAGS) $(DEFINES) $< > $@.$$$$; \
|
||||
sed 's,.*\.o[ :]*,$(<:.cpp=.o) $@ : ,g' < $@.$$$$ > $@; \
|
||||
rm -f $@.$$$$
|
||||
|
||||
$(IMAGE): $(OBJ)
|
||||
$(CXX) $(CXXFLAGS) $(DEFINES) $(OBJ) $(LIBS) -o $@
|
||||
|
||||
ifneq "$(MAKECMDGOALS)" "clean"
|
||||
-include $(SRC:.cpp=.d)
|
||||
endif
|
||||
|
||||
clean:
|
||||
rm -f $(OBJ) $(SRC:.cpp=.d) $(IMAGE)
|
||||
|
||||
.PHONY: clean all
|
52
test/test.cpp
Normal file
52
test/test.cpp
Normal file
@ -0,0 +1,52 @@
|
||||
#include <chrono>
|
||||
#include <thread>
|
||||
#include "../client/Tracy.hpp"
|
||||
#include "../common/TracySystem.hpp"
|
||||
|
||||
void TestFunction()
|
||||
{
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
void ResolutionCheck()
|
||||
{
|
||||
for(;;)
|
||||
{
|
||||
{
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
{
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
int main()
|
||||
{
|
||||
auto t1 = std::thread( TestFunction );
|
||||
auto t2 = std::thread( TestFunction );
|
||||
auto t3 = std::thread( ResolutionCheck );
|
||||
|
||||
tracy::SetThreadName( t1, "First thread" );
|
||||
tracy::SetThreadName( t2, "Second thread" );
|
||||
tracy::SetThreadName( t3, "Resolution check" );
|
||||
|
||||
for(;;)
|
||||
{
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
|
||||
{
|
||||
ZoneScoped;
|
||||
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
|
||||
}
|
||||
FrameMark;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user