-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benchmark failing because of lack of flag
Specifically priviledged because it's not present in the args object. Signed-off-by: Eric Curtin <ecurtin@redhat.com>
- Loading branch information
1 parent
56e3a71
commit 172b836
Showing
3 changed files
with
82 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bats | ||
# | ||
# Simplest set of ramalama tests. If any of these fail, we have serious problems. | ||
# | ||
|
||
load helpers | ||
|
||
# Override standard setup! We don't yet trust ramalama-images or ramalama-rm | ||
function setup() { | ||
# Makes test logs easier to read | ||
BATS_TEST_NAME_PREFIX="[002] " | ||
} | ||
|
||
#### DO NOT ADD ANY TESTS HERE! ADD NEW TESTS AT BOTTOM! | ||
|
||
# bats test_tags=distro-integration | ||
@test "ramalama bench" { | ||
run_ramalama bench smollm:135m | ||
is "$output" ".*model.*size.*" "model and size in output" | ||
} | ||
|
||
# vim: filetype=sh |