Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -426,10 +426,6 @@ is followed by its upstream source path or paths:
fastpool/src/unbounded.rs
asyncband/src/pool/unbounded.rs
fastpool/src/unbounded.rs
tests-integration/tests/pool_recycle_cancelled_test.rs
fastpool/tests/recycle_cancelled_tests.rs
tests-integration/tests/pool_replenish_test.rs
fastpool/tests/replenish_tests.rs

The exact upstream revision is:

Expand Down
2 changes: 1 addition & 1 deletion asyncband/src/broadcast/mpmc/bounded/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

// These run under Miri via `cargo x miri`, so they stay single-threaded and small. Behavior
// reachable from the public API is covered in `tests-integration/broadcast_mpmc_bounded_test.rs`.
// reachable from the public API is covered in `tests-integration/tests/broadcast_test/bounded.rs`.

use std::task::Waker;

Expand Down
2 changes: 0 additions & 2 deletions licenserc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ excludes = [
"asyncband/src/rwlock/owned_write_guard.rs",
"asyncband/src/rwlock/read_guard.rs",
"asyncband/src/rwlock/write_guard.rs",
"tests-integration/tests/pool_recycle_cancelled_test.rs",
"tests-integration/tests/pool_replenish_test.rs",
]
includes = [
"**/*.md",
Expand Down
19 changes: 19 additions & 0 deletions tests-integration/tests/broadcast_test/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

mod bounded;
mod unbounded;
19 changes: 19 additions & 0 deletions tests-integration/tests/event_test/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

mod auto_reset;
mod manual_reset;
245 changes: 0 additions & 245 deletions tests-integration/tests/pool_recycle_cancelled_test.rs

This file was deleted.

Loading