739ce79e21
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
18 lines
281 B
Bash
Executable File
18 lines
281 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
. ${srcdir}/common
|
|
|
|
# Test != comparison fails
|
|
RESULT=""
|
|
EXPECT_RETURN=1 run_test --exists requires-version-1
|
|
|
|
# Test >=, > and = succeed
|
|
RESULT=""
|
|
run_test --exists requires-version-2
|
|
|
|
# Test <=, < and != succeed
|
|
RESULT=""
|
|
run_test --exists requires-version-3
|