summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2015-07-07 18:46:14 -0700
committerJosh Haberman <jhaberman@gmail.com>2015-07-07 18:46:14 -0700
commit49dab06e03c16691c4dab1ba012fe8488089a590 (patch)
tree209f0749cbba6db8c9f0bf1094e6b5b5cd5190a0 /tests
parent6d9a9c727fd966acec7340aeabd5bf4039c6d929 (diff)
Brought into compliance with Google open-source policies.
- removed myself from Author headers in source files. - removed copyright notices from source file headers. - added CONTRIBUTING.md
Diffstat (limited to 'tests')
-rw-r--r--tests/bindings/googlepb/test_vs_proto2.cc3
-rw-r--r--tests/json/test_json.cc3
-rw-r--r--tests/pb/test_decoder.cc3
-rw-r--r--tests/pb/test_varint.c5
-rw-r--r--tests/test_cpp.cc4
-rw-r--r--tests/test_def.c10
-rw-r--r--tests/test_handlers.c6
-rw-r--r--tests/test_table.cc3
-rw-r--r--tests/test_util.h8
-rw-r--r--tests/testmain.cc2
-rw-r--r--tests/upb_test.h5
11 files changed, 5 insertions, 47 deletions
diff --git a/tests/bindings/googlepb/test_vs_proto2.cc b/tests/bindings/googlepb/test_vs_proto2.cc
index 06bea87..ac447e1 100644
--- a/tests/bindings/googlepb/test_vs_proto2.cc
+++ b/tests/bindings/googlepb/test_vs_proto2.cc
@@ -1,7 +1,4 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2011-2012 Google Inc. See LICENSE for details.
*
* A test that verifies that our results are identical to proto2 for a
* given proto type and input protobuf.
diff --git a/tests/json/test_json.cc b/tests/json/test_json.cc
index cb60bad..8dd4062 100644
--- a/tests/json/test_json.cc
+++ b/tests/json/test_json.cc
@@ -1,7 +1,4 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2014 Google Inc. See LICENSE for details.
*
* A set of tests for JSON parsing and serialization.
*/
diff --git a/tests/pb/test_decoder.cc b/tests/pb/test_decoder.cc
index c615a3c..6bb53fc 100644
--- a/tests/pb/test_decoder.cc
+++ b/tests/pb/test_decoder.cc
@@ -1,7 +1,4 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2011 Google Inc. See LICENSE for details.
*
* An exhaustive set of tests for parsing both valid and invalid protobuf
* input, with buffer breaks in arbitrary places.
diff --git a/tests/pb/test_varint.c b/tests/pb/test_varint.c
index c80f127..eff03fa 100644
--- a/tests/pb/test_varint.c
+++ b/tests/pb/test_varint.c
@@ -1,8 +1,3 @@
-/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2011 Google Inc. See LICENSE for details.
- */
#include <stdio.h>
#include "upb/pb/varint.int.h"
diff --git a/tests/test_cpp.cc b/tests/test_cpp.cc
index c2de6c3..48f0a3f 100644
--- a/tests/test_cpp.cc
+++ b/tests/test_cpp.cc
@@ -1,8 +1,4 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2011 Google Inc. See LICENSE for details.
- * Author: Josh Haberman <jhaberman@gmail.com>
*
* Tests for C++ wrappers.
*/
diff --git a/tests/test_def.c b/tests/test_def.c
index c33d584..3e92df2 100644
--- a/tests/test_def.c
+++ b/tests/test_def.c
@@ -1,11 +1,7 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2011 Google Inc. See LICENSE for details.
- *
- * Test of defs and symtab. There should be far more tests of edge conditions
- * (like attempts to link defs that don't have required properties set).
- */
+** Test of defs and symtab. There should be far more tests of edge conditions
+** (like attempts to link defs that don't have required properties set).
+*/
#include "upb/def.h"
#include "upb/pb/glue.h"
diff --git a/tests/test_handlers.c b/tests/test_handlers.c
index be95c0a..b591ad2 100644
--- a/tests/test_handlers.c
+++ b/tests/test_handlers.c
@@ -1,9 +1,3 @@
-/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2011 Google Inc. See LICENSE for details.
- *
- */
#include "upb/handlers.h"
#include "upb/descriptor/descriptor.upb.h"
diff --git a/tests/test_table.cc b/tests/test_table.cc
index 13b2330..8557092 100644
--- a/tests/test_table.cc
+++ b/tests/test_table.cc
@@ -1,7 +1,4 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2012 Google Inc. See LICENSE for details.
*
* Tests for upb_table.
*/
diff --git a/tests/test_util.h b/tests/test_util.h
index 73a5c19..d9e8d25 100644
--- a/tests/test_util.h
+++ b/tests/test_util.h
@@ -1,10 +1,6 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2014 Google Inc. See LICENSE for details.
- *
- * Common functionality for tests.
- */
+** Common functionality for tests.
+**/
#ifndef UPB_TEST_UTIL_H_
#define UPB_TEST_UTIL_H_
diff --git a/tests/testmain.cc b/tests/testmain.cc
index ac0b313..97dd716 100644
--- a/tests/testmain.cc
+++ b/tests/testmain.cc
@@ -1,5 +1,3 @@
-// Copyright 2012 Google Inc. All Rights Reserved.
-// Author: haberman@google.com (Josh Haberman)
#include <stdlib.h>
#ifdef USE_GOOGLE
diff --git a/tests/upb_test.h b/tests/upb_test.h
index 76844e5..d4b0688 100644
--- a/tests/upb_test.h
+++ b/tests/upb_test.h
@@ -1,8 +1,3 @@
-/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2011 Google Inc. See LICENSE for details.
- */
#ifndef UPB_TEST_H_
#define UPB_TEST_H_
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback