date and time created 92/06/08 17:17:34 by bostic
[unix-history] / usr / src / bin / test / binary_op
# Copyright (c) 1988 The Regents of the University of California.
# All rights reserved.
#
# This code is derived from software contributed to Berkeley by
# Kenneth Almquist.
#
# %sccs.include.redist.sh%
#
# @(#)binary_op 1.2 (Berkeley) %G%
#
#
# List of binary operators used by test
#
OR1 -o 1
OR2 | 1
AND1 -a 2
AND2 & 2
STREQ = 4 OP_STRING
STRNE != 4 OP_STRING
EQ -eq 4 OP_INT
NE -ne 4 OP_INT
GT -gt 4 OP_INT
LT -lt 4 OP_INT
LE -le 4 OP_INT
GE -ge 4 OP_INT