Skip to content
This repository was archived by the owner on Aug 19, 2024. It is now read-only.
Open
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
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ You must download and install the following or StorScore will not work:
The Visual Studio 2015 C++ runtime libraries for x86 & x64:
https://www.microsoft.com/en-us/download/details.aspx?id=48145

StorScore requires libXML. Install it from the command line:

For ActiveState perl installs:
$> ppm install XML::LibXML

For Strawberry perl installs:
$> cpan XML::LibXML

StorScore will work without these components, but some features will be
disabled:

Expand Down Expand Up @@ -107,4 +115,4 @@ Open Source Code of Conduct

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
2 changes: 1 addition & 1 deletion StorScore.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ else
"$prefix-" . strftime( "%Y-%m-%d_%H-%M-%S", localtime );
}

print "Targeting " . uc( $target->type ) . ": " . $target->model . "\n";
print "\nTargeting " . uc( $target->type ) . ": " . $target->model . "\n\n";

my $recipe = Recipe->new(
file_name => $recipe_file,
Expand Down
2 changes: 1 addition & 1 deletion StorScore.ver
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ The results in this directory were generated from
the version of storscore published on the date listed
below. If there is no date, the results were generated
from an unpublished & untracked version of code.
Tue 01/24/2017 9:00:53.83
Tue 02/21/2017 16:48:27.05
Binary file modified bin/DiskSpd.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions lib/CommandLine.pm
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ END
if( $self->demo_mode )
{
$self->_active_range( 1 );
$self->_test_time_override( 5 );
$self->_warmup_time_override( 0 );
$self->_test_time_override( 10 ); # seconds
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes seem unrelated to multiple targets

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They are unrelated. I made the change so that demo mode would demo a the warmup and test.

$self->_warmup_time_override( 5 ); # seconds
}

if( defined $self->test_time_override )
Expand Down
Loading