From 29daee42ce765ed3bf35a7d8eedeb1dccf2c4cfd Mon Sep 17 00:00:00 2001 From: Joshua Wright Date: Tue, 18 Aug 2020 08:48:22 -0400 Subject: [PATCH] Add simple test case to run all repo EVTX files with DeepBlue.ps1 --- t/runall.ps1 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 t/runall.ps1 diff --git a/t/runall.ps1 b/t/runall.ps1 new file mode 100644 index 0000000..9ad2dc1 --- /dev/null +++ b/t/runall.ps1 @@ -0,0 +1,2 @@ +Write-Host "Running DeepBlue.ps1 on all EVTX files to identify any syntax errors." +cd .. ; gci -path . -recurse -name "*.evtx" | % {.\DeepBlue.ps1 -File $_ | Out-Null }