Skip to content

Commit

Permalink
add directoryList test and 5.4 back into the mix
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 19, 2024
1 parent 221a639 commit 8a261b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
max-parallel: 1
matrix:
luceeVersion: [ 6.2/snapshot/light ] # 5.4/snapshot/light, 6.0/snapshot/light, 6.1/snapshot/light
luceeVersion: [ 5.4/snapshot/light, 6.2/snapshot/light ] # 5.4/snapshot/light, 6.0/snapshot/light, 6.1/snapshot/light
javaVersion: [ 11, 21, 23 ]
exclude:
- luceeVersion: 5.4/snapshot/light
Expand Down
3 changes: 2 additions & 1 deletion custom/benchmark/Application.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ component {
application.testSuite = [
"fileReadBinary",
"qrcode",
"qrcode-createObject"
"qrcode-createObject",
"directoryList"
];
}

Expand Down
4 changes: 4 additions & 0 deletions custom/benchmark/tests/directoryList.cfm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<cfscript>
dir = GetDirectoryFromPath( GetCurrentTemplatePath() ) & "/res/qrcodes/lib";
jarFiles = DirectoryList( dir, true, "path" );
</cfscript>

0 comments on commit 8a261b0

Please sign in to comment.