cameron314 / concurrentqueue

A fast multi-producer, multi-consumer lock-free concurrent queue for C++11
Other
9.86k stars 1.69k forks source link

Please add to the README how to run tests #351

Closed yurivict closed 1 year ago

yurivict commented 1 year ago

There is a section about tests, but it doesn't explain how to run them. Is there a cmake option or a make target?

cameron314 commented 1 year ago

What platform are you on?

If you have make, then cd tests/unittests; make run should do it.

yurivict commented 1 year ago

This works, thanks!