Skip to content

Commit

Permalink
Revert "RUN-845: Enable chunked install"
Browse files Browse the repository at this point in the history
  • Loading branch information
adambratschikaye committed Jan 25, 2024
1 parent 4fe99b1 commit f63f066
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion rs/config/src/execution_environment.rs
Expand Up @@ -316,7 +316,7 @@ impl Default for Config {
max_compilation_cache_size: MAX_COMPILATION_CACHE_SIZE,
query_stats_aggregation: FlagStatus::Disabled,
query_stats_epoch_length: QUERY_STATS_EPOCH_LENGTH,
wasm_chunk_store: FlagStatus::Enabled,
wasm_chunk_store: FlagStatus::Disabled,
stop_canister_timeout_duration: STOP_CANISTER_TIMEOUT_DURATION,
canister_snapshots: FlagStatus::Disabled,
}
Expand Down
16 changes: 7 additions & 9 deletions rs/tests/execution/general_execution_test.rs
Expand Up @@ -23,9 +23,6 @@ use ic_tests::execution::ingress_rate_limiting::*;
use ic_tests::execution::malicious_input::malicious_input_test;
use ic_tests::execution::nns_shielding::*;
use ic_tests::execution::queries::query_reply_sizes;
use ic_tests::execution::wasm_chunk_store::install_large_wasm;
use ic_tests::execution::wasm_chunk_store::install_large_wasm_with_other_store;
use ic_tests::execution::wasm_chunk_store::install_large_wasm_with_other_store_fails_cross_subnet;
use ic_tests::systest;

fn main() -> Result<()> {
Expand Down Expand Up @@ -106,12 +103,13 @@ fn main() -> Result<()> {
canister_heartbeat_can_call_multiple_canisters_xnet
))
.add_test(systest!(canister_heartbeat_can_stop))
.add_test(systest!(canister_heartbeat_cannot_reply))
.add_test(systest!(install_large_wasm))
.add_test(systest!(install_large_wasm_with_other_store))
.add_test(systest!(
install_large_wasm_with_other_store_fails_cross_subnet
)),
.add_test(systest!(canister_heartbeat_cannot_reply)),
// Enable tests when feature is enabled.
// .add_test(systest!(install_large_wasm))
// .add_test(systest!(install_large_wasm_with_other_store))
// .add_test(systest!(
// install_large_wasm_with_other_store_fails_cross_subnet
// )),
)
.execute_from_args()?;

Expand Down

0 comments on commit f63f066

Please sign in to comment.