include window
# no attributes, no color
call3 OK 0 0 wattr_get $win1
# set reverse and bold
call OK wattr_set $win1 ($BOLD | $REVERSE) 2
# returned attributes includes color information
call3 OK ($ACS_IS_WACS | $BOLD | $REVERSE) 2 wattr_get $win1
# turn off reverse
call OK wattr_off $win1 $REVERSE
call3 OK ($ACS_IS_WACS | $BOLD) 2 wattr_get $win1
# turn on standout
call OK wattr_on $win1 $STANDOUT
call3 OK ($ACS_IS_WACS | $BOLD | $STANDOUT) 2 wattr_get $win1
# turn on blink
call OK wattron $win1 $BLINK
call3 OK ($ACS_IS_WACS | $BOLD | $STANDOUT | $BLINK) 2 wattr_get $win1
# turn off bold
call OK wattroff $win1 $BOLD
call3 OK ($ACS_IS_WACS | $STANDOUT | $BLINK) 2 wattr_get $win1
# print out something to check our attributes are there, standout and blink
call OK wprintw $win1 "%s" "hello"
call OK wrefresh $win1
compare attributes.chk
