xref: /csrg-svn/bin/test/binary_op (revision 53835)
1*53835Selan# List of binary operators used by test
2*53835Selan#
3*53835Selan# Copyright 1989 by Kenneth Almquist.  All rights reserved.
4*53835Selan# This file is part of ash, which is distributed under the terms specified
5*53835Selan# by the Ash General Public License.  See the file named LICENSE.
6*53835Selan
7*53835SelanOR1	 -o	1
8*53835SelanOR2	 |	1
9*53835SelanAND1	 -a	2
10*53835SelanAND2	 &	2
11*53835SelanSTREQ	 =	4    OP_STRING
12*53835SelanSTRNE	 !=	4    OP_STRING
13*53835SelanEQ	 -eq	4    OP_INT
14*53835SelanNE	 -ne	4    OP_INT
15*53835SelanGT	 -gt	4    OP_INT
16*53835SelanLT	 -lt	4    OP_INT
17*53835SelanLE	 -le	4    OP_INT
18*53835SelanGE	 -ge	4    OP_INT
19*53835Selan
20