Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix copyright check for expected tests #3170

Merged
merged 2 commits into from
May 3, 2024
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
2 changes: 1 addition & 1 deletion scripts/ci/copyright-exclude
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Cargo.lock
LICENSE-APACHE
LICENSE-MIT
editorconfig
expected
expected$
gitattributes
gitignore
gitmodules
Expand Down
2 changes: 1 addition & 1 deletion tests/expected/coroutines/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright Kani Contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT

#![feature(coroutines, coroutine_trait)]
Expand Down
2 changes: 1 addition & 1 deletion tests/expected/coroutines/pin/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright Kani Contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT

// Test contains a call to a coroutine via a Pin
Expand Down
2 changes: 2 additions & 0 deletions tests/expected/function-contract/modifies/refcell_fixme.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright Kani Contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT
use std::cell::RefCell;
use std::ops::Deref;

Expand Down
2 changes: 1 addition & 1 deletion tests/expected/offset-wraps-around/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright Kani Contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT

// Check that a high offset causes a "wrapping around" behavior in CBMC.
Expand Down
2 changes: 2 additions & 0 deletions tests/expected/slice_c_str/c_str_fixme.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright Kani Contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT
#![feature(rustc_private)]
#![feature(c_str_literals)]
//! FIXME: <https://github.com/rust-lang/rust/issues/113333>
Expand Down
Loading