mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-07 00:42:42 +00:00
Addressed Sean's Comments
This commit is contained in:
@@ -283,6 +283,23 @@ fn terminal_block_hash_and_activation_epoch_override_flags() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
#[test]
|
#[test]
|
||||||
|
#[should_panic]
|
||||||
|
fn terminal_block_hash_missing_activation_epoch() {
|
||||||
|
CommandLineTest::new()
|
||||||
|
.flag(
|
||||||
|
"terminal-block-hash-override",
|
||||||
|
Some("0x4242424242424242424242424242424242424242424242424242424242424242"),
|
||||||
|
)
|
||||||
|
.run_with_zero_port();
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
|
#[should_panic]
|
||||||
|
fn epoch_override_missing_terminal_block_hash() {
|
||||||
|
CommandLineTest::new()
|
||||||
|
.flag("terminal-block-hash-epoch-override", Some("1337"))
|
||||||
|
.run_with_zero_port();
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
fn safe_slots_to_import_optimistically_flag() {
|
fn safe_slots_to_import_optimistically_flag() {
|
||||||
CommandLineTest::new()
|
CommandLineTest::new()
|
||||||
.flag("safe-slots-to-import-optimistically", Some("421337"))
|
.flag("safe-slots-to-import-optimistically", Some("421337"))
|
||||||
|
|||||||
@@ -36,9 +36,9 @@ pub trait CommandLineTestExec {
|
|||||||
let cmd = self.cmd_mut();
|
let cmd = self.cmd_mut();
|
||||||
cmd.arg("--datadir")
|
cmd.arg("--datadir")
|
||||||
.arg(tmp_dir.path().as_os_str())
|
.arg(tmp_dir.path().as_os_str())
|
||||||
.arg(format!("--{}", "--dump-config"))
|
.arg(format!("--{}", "dump-config"))
|
||||||
.arg(tmp_config_path.as_os_str())
|
.arg(tmp_config_path.as_os_str())
|
||||||
.arg(format!("--{}", "--dump-chain-config"))
|
.arg(format!("--{}", "dump-chain-config"))
|
||||||
.arg(tmp_chain_config_path.as_os_str())
|
.arg(tmp_chain_config_path.as_os_str())
|
||||||
.arg("--immediate-shutdown");
|
.arg("--immediate-shutdown");
|
||||||
|
|
||||||
@@ -72,9 +72,9 @@ pub trait CommandLineTestExec {
|
|||||||
|
|
||||||
// Add args --datadir <tmp_dir> --dump-config <tmp_config_path> --dump-chain-config <tmp_chain_config_path> --immediate-shutdown
|
// Add args --datadir <tmp_dir> --dump-config <tmp_config_path> --dump-chain-config <tmp_chain_config_path> --immediate-shutdown
|
||||||
let cmd = self.cmd_mut();
|
let cmd = self.cmd_mut();
|
||||||
cmd.arg(format!("--{}", "--dump-config"))
|
cmd.arg(format!("--{}", "dump-config"))
|
||||||
.arg(tmp_config_path.as_os_str())
|
.arg(tmp_config_path.as_os_str())
|
||||||
.arg(format!("--{}", "--dump-chain-config"))
|
.arg(format!("--{}", "dump-chain-config"))
|
||||||
.arg(tmp_chain_config_path.as_os_str())
|
.arg(tmp_chain_config_path.as_os_str())
|
||||||
.arg("--immediate-shutdown");
|
.arg("--immediate-shutdown");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user