aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/nanopb/tests/io_errors/SConscript
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-06-30 14:35:30 +0200
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-07-01 10:53:38 +0200
commiteebbd8698ed659bdb0cb73b0fc4896aa1f8e4083 (patch)
treec1933c4e1b09c66fd378ba7036febec70df981c7 /third_party/nanopb/tests/io_errors/SConscript
parentbc7d496f4e75aaff02240e42d426fde03dc7321b (diff)
Remove nanopb tests from the tree.
We don't use them and one of the test file contains a space that we don't support in label. Change-Id: I4752860788bd20455ba659a89586e66e2896863d
Diffstat (limited to 'third_party/nanopb/tests/io_errors/SConscript')
-rw-r--r--third_party/nanopb/tests/io_errors/SConscript15
1 files changed, 0 insertions, 15 deletions
diff --git a/third_party/nanopb/tests/io_errors/SConscript b/third_party/nanopb/tests/io_errors/SConscript
deleted file mode 100644
index 60146cc09b..0000000000
--- a/third_party/nanopb/tests/io_errors/SConscript
+++ /dev/null
@@ -1,15 +0,0 @@
-# Simulate io errors when encoding and decoding
-
-Import("env")
-
-c = Copy("$TARGET", "$SOURCE")
-env.Command("alltypes.proto", "#alltypes/alltypes.proto", c)
-
-env.NanopbProto(["alltypes", "alltypes.options"])
-
-ioerr = env.Program(["io_errors.c", "alltypes.pb.c",
- "$COMMON/pb_encode.o", "$COMMON/pb_decode.o", "$COMMON/pb_common.o"])
-
-env.RunTest("io_errors.output", [ioerr, "$BUILD/alltypes/encode_alltypes.output"])
-
-