Update the default values for the platforms

This commit is contained in:
Omar Abdulla
2025-09-18 20:16:57 +03:00
parent 52b21f8982
commit d4869deb68
2 changed files with 8 additions and 2 deletions
+3 -1
View File
@@ -3,7 +3,9 @@ use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use strum::{AsRefStr, Display, EnumString, IntoStaticStr};
/// An enum of the platform identifiers of all of the platforms supported by this framework.
/// An enum of the platform identifiers of all of the platforms supported by this framework. This
/// could be thought of like the target triple from Rust and LLVM where it specifies the platform
/// completely starting with the node, the vm, and finally the compiler used for this combination.
#[derive(
Clone,
Copy,
+5 -1
View File
@@ -167,7 +167,11 @@ pub struct TestExecutionContext {
pub working_directory: WorkingDirectoryConfiguration,
/// The set of platforms that the differential tests should run on.
#[arg(short = 'p', long = "platform")]
#[arg(
short = 'p',
long = "platform",
default_value = "geth-evm-solc,revive-dev-node-polkavm-resolc"
)]
pub platforms: Vec<PlatformIdentifier>,
/// A list of test corpus JSON files to be tested.