1#!/bin/sh 2# Copyright (c) 2020 Proofpoint, Inc. and its suppliers. 3# All rights reserved. 4# 5# By using this file, you agree to the terms and conditions set 6# forth in the LICENSE file which can be found at the top level of 7# the sendmail distribution. 8# 9# ---------------------------------------- 10# test SM_STRNCASEEQ 11# ---------------------------------------- 12 13PRG=./t-streq 14R=0 15${PRG} <<EOF 160:a 171:X 181:a 191:A 202:a 211:A 221:aB 231:AC 242:aB 250:AC 26EOF 27R=$? 28 29exit $R 30