From 24376157eab2177e44be36ced5e1ae6242d65587 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 19:19:17 -0500 Subject: [PATCH] feat: add README for C++ test harness setup and usage instructions --- tests/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/README.md diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 0000000..84d2555 --- /dev/null +++ b/tests/README.md @@ -0,0 +1,12 @@ +This folder contains a minimal C++ test harness for starworld. + +Build target: stardust-tests + +What it checks: +- Protocol signature stability: compares NLPacket::computeProtocolVersionSignature() against the expected value for the vendored Overte commit. +- Domain discovery parsing: validates that JSON containing Vircadia- or Overte-style fields is parsed into host/port pairs correctly. + +Run: + ./build/stardust-tests + +Exit code 0 indicates PASS.