浏览代码

Add runfiles to make the protobuf_test pass.

Jisi Liu 10 年之前
父节点
当前提交
598480df11
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      BUILD

+ 4 - 2
BUILD

@@ -432,7 +432,9 @@ cc_test(
     copts = COPTS,
     data = [
         ":test_plugin",
-    ],
+    ] + glob([
+        "src/google/protobuf/**/*",
+    ]),
     includes = [
         "src/",
     ],
@@ -542,8 +544,8 @@ py_library(
     name = "python_tests",
     srcs = [":python_test_srcs"],
     deps = [
-        ":python_common_test_protos",
         ":protobuf_python",
+        ":python_common_test_protos",
         ":python_specific_test_protos",
     ],
 )