source: trunk/essentials/sys-apps/gawk/test/switch2.awk

Last change on this file was 3076, checked in by bird, 18 years ago

gawk 3.1.5

File size: 2.2 KB
Line 
1# From spcecdt@armory.com Tue Jun 3 11:41:49 2003
2# Return-Path: <spcecdt@armory.com>
3# Received: from localhost (skeeve [127.0.0.1])
4# by skeeve.com (8.12.5/8.12.5) with ESMTP id h538fVuW018115
5# for <arnold@localhost>; Tue, 3 Jun 2003 11:41:49 +0300
6# Received: from actcom.co.il [192.114.47.1]
7# by localhost with POP3 (fetchmail-5.9.0)
8# for arnold@localhost (single-drop); Tue, 03 Jun 2003 11:41:49 +0300 (IDT)
9# Received: by actcom.co.il (mbox arobbins)
10# (with Cubic Circle's cucipop (v1.31 1998/05/13) Tue Jun 3 11:41:37 2003)
11# X-From_: spcecdt@armory.com Mon Jun 2 20:17:30 2003
12# Received: from smtp1.actcom.net.il by actcom.co.il with ESMTP
13# (8.11.6/actcom-0.2) id h52HHNY23516 for <arobbins@actcom.co.il>;
14# Mon, 2 Jun 2003 20:17:24 +0300 (EET DST)
15# (rfc931-sender: mail.actcom.co.il [192.114.47.13])
16# Received: from f7.net (consort.superb.net [209.61.216.22])
17# by smtp1.actcom.net.il (8.12.8/8.12.8) with ESMTP id h52HIHqv028728
18# for <arobbins@actcom.co.il>; Mon, 2 Jun 2003 20:18:18 +0300
19# Received: from armory.com (deepthought.armory.com [192.122.209.42])
20# by f7.net (8.11.7/8.11.6) with SMTP id h52HHKl31637
21# for <arnold@skeeve.com>; Mon, 2 Jun 2003 13:17:20 -0400
22# Date: Mon, 2 Jun 2003 10:17:11 -0700
23# From: "John H. DuBois III" <spcecdt@armory.com>
24# To: arnold@skeeve.com
25# Subject: gawk 3.1.2c coredump
26# Message-ID: <20030602171711.GA3958@armory.com>
27# Mime-Version: 1.0
28# Content-Type: text/plain; charset=us-ascii
29# Content-Disposition: inline
30# User-Agent: Mutt/1.3.28i
31# X-Www: http://www.armory.com./~spcecdt/
32# Sender: spcecdt@armory.com
33# X-SpamBouncer: 1.4 (10/07/01)
34# X-SBClass: OK
35# Status: R
36#
37#!/usr/local/bin/gawk -f
38BEGIN {
39 switch (substr("x",1,1)) {
40 case /ask.com/:
41 break
42 case "google":
43 break
44 }
45}
46#
47# The stack says:
48#
49# #0 0x0806fac2 in r_tree_eval (tree=0x8092000, iscond=0) at eval.c:813
50# #1 0x08070413 in r_tree_eval (tree=0x0, iscond=0) at eval.c:1071
51# #2 0x08070413 in r_tree_eval (tree=0x8092000, iscond=0) at eval.c:1071
52# #3 0x08070413 in r_tree_eval (tree=0x8092000, iscond=0) at eval.c:1071
53# [ this continues on indefinitely - I suppose it ran out of stack eventually ]
54#
55# John
56# --
57# John DuBois spcecdt@armory.com KC6QKZ/AE http://www.armory.com/~spcecdt/
58#
59#
Note: See TracBrowser for help on using the repository browser.