xref: /original-bsd/bin/test/binary_op (revision 72f3481b)
1# Copyright (c) 1988 The Regents of the University of California.
2# All rights reserved.
3#
4# This code is derived from software contributed to Berkeley by
5# Kenneth Almquist.
6#
7# %sccs.include.redist.sh%
8#
9#      @(#)binary_op	1.2 (Berkeley) 06/03/92
10#
11
12
13#
14# List of binary operators used by test
15#
16
17
18OR1	 -o	1
19OR2	 |	1
20AND1	 -a	2
21AND2	 &	2
22STREQ	 =	4    OP_STRING
23STRNE	 !=	4    OP_STRING
24EQ	 -eq	4    OP_INT
25NE	 -ne	4    OP_INT
26GT	 -gt	4    OP_INT
27LT	 -lt	4    OP_INT
28LE	 -le	4    OP_INT
29GE	 -ge	4    OP_INT
30
31