Sponsored Content
Full Discussion: testing
Top Forums UNIX for Advanced & Expert Users testing Post 302082383 by areef4u on Tuesday 1st of August 2006 10:10:32 PM
Old 08-01-2006
testing

what does one mean in the context of testing... UNIT TESTING & INITIAL LEVEL OF MENU TESTING
 

3 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

testing

what is the difference between white box and black box testing? (1 Reply)
Discussion started by: areef4u
1 Replies

2. UNIX for Dummies Questions & Answers

testing

first time use (0 Replies)
Discussion started by: lcharles
0 Replies

3. Shell Programming and Scripting

Ip up/down testing

#!/bin/bash ip=$1 if ; then echo "U must enter ip as argument: $0 " exit 1 fi testip=`echo $ip |grep -E "^((||1{2}|2|25)){3}(||1{2}|2|25)$"` if ; then echo "Wrong ip adress" exit 2 fi ping -c 2 $ip 2>&1 >/dev/null if ; then echo "$ip is UP" else echo "$ip is... (2 Replies)
Discussion started by: aco4u
2 Replies
MENU_HOOK(3)						   BSD Library Functions Manual 					      MENU_HOOK(3)

NAME
item_init, item_term, menu_init, menu_term, set_item_init, set_item_term, set_menu_init, set_menu_term -- get or set handler functions for menu post/unpost or item change LIBRARY
Curses Menu Library (libmenu, -lmenu) SYNOPSIS
#include <menu.h> void (*hook)() item_init(MENU *menu); void (*hook)() item_term(MENU *menu); void (*hook)() menu_init(MENU *menu); void (*hook)() menu_term(MENU *menu); int set_item_init(MENU *menu, void (*hook)())); int set_item_term(MENU *menu, void (*hook)())); int set_menu_init(MENU *menu, void (*hook)())); int set_menu_term(MENU *menu, void (*hook)())); DESCRIPTION
The item_init() function returns a pointer to the function that will be called whenever the menu is posted and also just after the current item changes. This is set by the set_item_init() call. The item_term() function returns a pointer to the function that will be called before the menu is unposted and just before the current item changes, this pointer is set by the set_item_term() call. The menu_init() func- tions returns a pointer to the function that will be called just before the menu is posted to the screen. This pointer is set by the set_menu_init() function call. The menu_term() function returns a pointer to the function that will be called just after the menu has been unposted, this pointer is set by the set_menu_term() function. SEE ALSO
curses(3), menus(3) NOTES
The header <menu.h> automatically includes both <curses.h> and <eti.h>. BSD
September 10, 1999 BSD
All times are GMT -4. The time now is 01:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy