xref: /illumos-gate/usr/src/test/util-tests/tests/mdb/shell/err.unterminated.ksh (revision 3d4e20a23e1894c03df6b83e39a88625f74ee0e4)
1*3d4e20a2SAndy Fiddaman#!/usr/bin/ksh
2*3d4e20a2SAndy Fiddaman#
3*3d4e20a2SAndy Fiddaman# This file and its contents are supplied under the terms of the
4*3d4e20a2SAndy Fiddaman# Common Development and Distribution License ("CDDL"), version 1.0.
5*3d4e20a2SAndy Fiddaman# You may only use this file in accordance with the terms of version
6*3d4e20a2SAndy Fiddaman# 1.0 of the CDDL.
7*3d4e20a2SAndy Fiddaman#
8*3d4e20a2SAndy Fiddaman# A full copy of the text of the CDDL should have accompanied this
9*3d4e20a2SAndy Fiddaman# source.  A copy of the CDDL is also available via the Internet at
10*3d4e20a2SAndy Fiddaman# http://www.illumos.org/license/CDDL.
11*3d4e20a2SAndy Fiddaman#
12*3d4e20a2SAndy Fiddaman
13*3d4e20a2SAndy Fiddaman#
14*3d4e20a2SAndy Fiddaman# Copyright 2026 Oxide Computer Company
15*3d4e20a2SAndy Fiddaman#
16*3d4e20a2SAndy Fiddaman
17*3d4e20a2SAndy Fiddaman#
18*3d4e20a2SAndy Fiddaman# An unterminated quoted shell command is a syntax error and must not run.
19*3d4e20a2SAndy Fiddaman# Using -e makes the resulting parse error visible in mdb's exit status.
20*3d4e20a2SAndy Fiddaman#
21*3d4e20a2SAndy Fiddaman
22*3d4e20a2SAndy Fiddamanexport SHELL=/bin/sh
23*3d4e20a2SAndy Fiddaman
24*3d4e20a2SAndy Fiddaman$MDB -e "! 'echo unterminated"
25*3d4e20a2SAndy Fiddamanexit $?
26