aboutsummaryrefslogtreecommitdiff
path: root/test/pbdrv/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/pbdrv/main.cpp')
-rw-r--r--test/pbdrv/main.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/pbdrv/main.cpp b/test/pbdrv/main.cpp
deleted file mode 100644
index de7e88a..0000000
--- a/test/pbdrv/main.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <gtest/gtest.h>
-
-#include "pb-write.h"
-
-TEST(pbdrv, write) {
-
- pbdrv_buf_t buf = pbdrv_write_cmd_req_set_state({
- .header = { .sender = 0xf0, },
- .state = PB_GS_PLAYING,
- });
- for (size_t i = 0; i < buf.size; i++) {
- printf("%02x ", buf.data[i] & 0xff);
- }
- printf("\n");
-
- ASSERT_TRUE(true);
-}
-