summaryrefslogtreecommitdiff
path: root/tests/tests.c
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2011-07-15 12:05:43 -0700
committerJoshua Haberman <joshua@reverberate.org>2011-07-15 12:05:43 -0700
commit10265aa56b22ac4f04e7ba08330138e4507534e4 (patch)
treee821c85219a10b4ee3df715ab774465fdf87cf1d /tests/tests.c
parent6a1f3a66939308668ab8dce0d195afec16e02af9 (diff)
Directory restructure.
Includes are now via upb/foo.h. Files specific to the protobuf format are now in upb/pb (the core library is concerned with message definitions, handlers, and byte streams, but knows nothing about any particular serializationf format).
Diffstat (limited to 'tests/tests.c')
-rw-r--r--tests/tests.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/tests.c b/tests/tests.c
index aa692f6..5cbbd78 100644
--- a/tests/tests.c
+++ b/tests/tests.c
@@ -2,11 +2,11 @@
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
-#include "upb_def.h"
-#include "upb_glue.h"
+#include "upb/def.h"
+#include "upb/handlers.h"
+#include "upb/pb/decoder.h"
+#include "upb/pb/glue.h"
#include "upb_test.h"
-#include "upb_handlers.h"
-#include "upb_decoder.h"
static upb_symtab *load_test_proto() {
upb_symtab *s = upb_symtab_new();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback