Skip to content

Commit 99c1ec7

Browse files
committed
bazel: fix formats of build files
- Build files format fixed
1 parent 6ed54b9 commit 99c1ec7

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

src/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@
1010
#
1111
# SPDX-License-Identifier: Apache-2.0
1212
# *******************************************************************************
13-

src/rust_kvs/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ rust_library(
2121
normal = True,
2222
),
2323
)
24-

src/rust_kvs_tool/BUILD

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
load("@crates//:defs.bzl", "all_crate_deps")
1414
load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_library", "rust_test")
1515

16-
1716
rust_binary(
1817
name = "kvs_tool",
1918
srcs = [
@@ -24,7 +23,6 @@ rust_binary(
2423
deps = all_crate_deps(
2524
normal = True,
2625
) + [
27-
"//src/rust_kvs:rust_kvs",
26+
"//src/rust_kvs",
2827
],
2928
)
30-

tests/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Key-Value-Store Tests
2+
3+
## License
4+
5+
```
6+
Copyright (c) 2025 Contributors to the Eclipse Foundation
7+
8+
See the NOTICE file(s) distributed with this work for additional
9+
information regarding copyright ownership.
10+
11+
This program and the accompanying materials are made available under the
12+
terms of the Apache License Version 2.0 which is available at
13+
https://www.apache.org/licenses/LICENSE-2.0
14+
15+
SPDX-License-Identifier: Apache-2.0
16+
```
17+
18+
## Separation Note
19+
20+
All tests are kept in separate files as the working directory is always
21+
changed. If there is more than one test in a file both tests are run in
22+
parallel and use the same working directory which will led to wrong results.

0 commit comments

Comments
 (0)