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
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ------------------------------------------------------------------------------#
# © 2021. Triad National Security, LLC. All rights reserved. This program was
# © 2025. Triad National Security, LLC. All rights reserved. This program was
# produced under U.S. Government contract 89233218CNA000001 for Los Alamos
# National Laboratory (LANL), which is operated by Triad National Security, LLC
# for the U.S. Department of Energy/National Nuclear Security Administration.
Expand All @@ -13,7 +13,7 @@

cmake_minimum_required(VERSION 3.24)

set(SPINER_VERSION 1.6.4)
set(SPINER_VERSION 1.7.0)
project(
spiner
VERSION ${SPINER_VERSION}
Expand Down Expand Up @@ -90,7 +90,7 @@ if(NOT TARGET ports-of-call::ports-of-call)
FetchContent_Declare(
ports-of-call
GIT_REPOSITORY https://github.com/lanl/ports-of-call
GIT_TAG v1.5.1 # TODO: update if needed
GIT_TAG v2.0.0 # TODO: update if needed
)
set(SPINER_DEP_LIST "ports-of-call")
endif()
Expand Down
13 changes: 7 additions & 6 deletions test/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -792,12 +792,13 @@ SCENARIO("Copying a DataBox to device", "[DataBox][GetOnDevice]") {
printf("free db_host\n");
free(db_host);
}
GIVEN("An empty databox");
DataBox db;
WHEN("We copy it to device") {
DataBox db2 = db.getOnDevice();
THEN("The new object is still empty") {
REQUIRE(db.dataStatus() == Spiner::DataStatus::Empty);
GIVEN("An empty databox") {
DataBox db;
WHEN("We copy it to device") {
DataBox db2 = db.getOnDevice();
THEN("The new object is still empty") {
REQUIRE(db.dataStatus() == Spiner::DataStatus::Empty);
}
}
}
}
Expand Down