亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? binary.test

?? tcl是工具命令語言
?? TEST
?? 第 1 頁 / 共 4 頁
字號:
# This file tests the tclBinary.c file and the "binary" Tcl command. ## This file contains a collection of tests for one or more of the Tcl# built-in commands.  Sourcing this file into Tcl runs the tests and# generates output for errors.  No output means no errors were found.## Copyright (c) 1997 by Sun Microsystems, Inc.# Copyright (c) 1998-1999 by Scriptics Corporation.## See the file "license.terms" for information on usage and redistribution# of this file, and for a DISCLAIMER OF ALL WARRANTIES.## RCS: @(#) $Id: binary.test,v 1.11 2003/02/21 21:54:11 dkf Exp $if {[lsearch [namespace children] ::tcltest] == -1} {    package require tcltest    namespace import -force ::tcltest::*}test binary-0.1 {DupByteArrayInternalRep} {    set hdr [binary format cc 0 0316]    set buf hellomatt        set data $hdr    append data $buf        string length $data} 11test binary-1.1 {Tcl_BinaryObjCmd: bad args} {    list [catch {binary} msg] $msg} {1 {wrong # args: should be "binary option ?arg arg ...?"}}test binary-1.2 {Tcl_BinaryObjCmd: bad args} {    list [catch {binary foo} msg] $msg} {1 {bad option "foo": must be format or scan}}test binary-1.3 {Tcl_BinaryObjCmd: format error} {    list [catch {binary f} msg] $msg} {1 {wrong # args: should be "binary format formatString ?arg arg ...?"}}test binary-1.4 {Tcl_BinaryObjCmd: format} {    binary format ""} {}test binary-2.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format a } msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-2.2 {Tcl_BinaryObjCmd: format} {    binary format a0 foo} {}test binary-2.3 {Tcl_BinaryObjCmd: format} {    binary format a f} {f}test binary-2.4 {Tcl_BinaryObjCmd: format} {    binary format a foo} {f}test binary-2.5 {Tcl_BinaryObjCmd: format} {    binary format a3 foo} {foo}test binary-2.6 {Tcl_BinaryObjCmd: format} {    binary format a5 foo} foo\x00\x00test binary-2.7 {Tcl_BinaryObjCmd: format} {    binary format a*a3 foobarbaz blat} foobarbazblatest binary-2.8 {Tcl_BinaryObjCmd: format} {    binary format a*X3a2 foobar x} foox\x00rtest binary-3.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format A} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-3.2 {Tcl_BinaryObjCmd: format} {    binary format A0 f} {}test binary-3.3 {Tcl_BinaryObjCmd: format} {    binary format A f} {f}test binary-3.4 {Tcl_BinaryObjCmd: format} {    binary format A foo} {f}test binary-3.5 {Tcl_BinaryObjCmd: format} {    binary format A3 foo} {foo}test binary-3.6 {Tcl_BinaryObjCmd: format} {    binary format A5 foo} {foo  }test binary-3.7 {Tcl_BinaryObjCmd: format} {    binary format A*A3 foobarbaz blat} foobarbazblatest binary-3.8 {Tcl_BinaryObjCmd: format} {    binary format A*X3A2 foobar x} {foox r}test binary-4.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format B} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-4.2 {Tcl_BinaryObjCmd: format} {    binary format B0 1} {}test binary-4.3 {Tcl_BinaryObjCmd: format} {    binary format B 1} \x80test binary-4.4 {Tcl_BinaryObjCmd: format} {    binary format B* 010011} \x4ctest binary-4.5 {Tcl_BinaryObjCmd: format} {    binary format B8 01001101} \x4dtest binary-4.6 {Tcl_BinaryObjCmd: format} {    binary format A2X2B9 oo 01001101} \x4d\x00test binary-4.7 {Tcl_BinaryObjCmd: format} {    binary format B9 010011011010} \x4d\x80test binary-4.8 {Tcl_BinaryObjCmd: format} {    binary format B2B3 10 010} \x80\x40test binary-4.9 {Tcl_BinaryObjCmd: format} {    list [catch {binary format B1B5 1 foo} msg] $msg} {1 {expected binary string but got "foo" instead}}test binary-5.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format b} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-5.2 {Tcl_BinaryObjCmd: format} {    binary format b0 1} {}test binary-5.3 {Tcl_BinaryObjCmd: format} {    binary format b 1} \x01test binary-5.4 {Tcl_BinaryObjCmd: format} {    binary format b* 010011} 2test binary-5.5 {Tcl_BinaryObjCmd: format} {    binary format b8 01001101} \xb2test binary-5.6 {Tcl_BinaryObjCmd: format} {    binary format A2X2b9 oo 01001101} \xb2\x00test binary-5.7 {Tcl_BinaryObjCmd: format} {    binary format b9 010011011010} \xb2\x01test binary-5.8 {Tcl_BinaryObjCmd: format} {    binary format b17 1} \x01\00\00test binary-5.9 {Tcl_BinaryObjCmd: format} {    binary format b2b3 10 010} \x01\x02test binary-5.10 {Tcl_BinaryObjCmd: format} {    list [catch {binary format b1b5 1 foo} msg] $msg} {1 {expected binary string but got "foo" instead}}test binary-6.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format h} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-6.2 {Tcl_BinaryObjCmd: format} {    binary format h0 1} {}test binary-6.3 {Tcl_BinaryObjCmd: format} {    binary format h 1} \x01test binary-6.4 {Tcl_BinaryObjCmd: format} {    binary format h c} \x0ctest binary-6.5 {Tcl_BinaryObjCmd: format} {    binary format h* baadf00d} \xab\xda\x0f\xd0test binary-6.6 {Tcl_BinaryObjCmd: format} {    binary format h4 c410} \x4c\x01test binary-6.7 {Tcl_BinaryObjCmd: format} {    binary format h6 c4102} \x4c\x01\x02test binary-6.8 {Tcl_BinaryObjCmd: format} {    binary format h5 c41020304} \x4c\x01\x02test binary-6.9 {Tcl_BinaryObjCmd: format} {    binary format a3X3h5 foo 2} \x02\x00\x00test binary-6.10 {Tcl_BinaryObjCmd: format} {    binary format h2h3 23 456} \x32\x54\x06test binary-6.11 {Tcl_BinaryObjCmd: format} {    list [catch {binary format h2 foo} msg] $msg} {1 {expected hexadecimal string but got "foo" instead}}test binary-7.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format H} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-7.2 {Tcl_BinaryObjCmd: format} {    binary format H0 1} {}test binary-7.3 {Tcl_BinaryObjCmd: format} {    binary format H 1} \x10test binary-7.4 {Tcl_BinaryObjCmd: format} {    binary format H c} \xc0test binary-7.5 {Tcl_BinaryObjCmd: format} {    binary format H* baadf00d} \xba\xad\xf0\x0dtest binary-7.6 {Tcl_BinaryObjCmd: format} {    binary format H4 c410} \xc4\x10test binary-7.7 {Tcl_BinaryObjCmd: format} {    binary format H6 c4102} \xc4\x10\x20test binary-7.8 {Tcl_BinaryObjCmd: format} {    binary format H5 c41023304} \xc4\x10\x20test binary-7.9 {Tcl_BinaryObjCmd: format} {    binary format a3X3H5 foo 2} \x20\x00\x00test binary-7.10 {Tcl_BinaryObjCmd: format} {    binary format H2H3 23 456} \x23\x45\x60test binary-7.11 {Tcl_BinaryObjCmd: format} {    list [catch {binary format H2 foo} msg] $msg} {1 {expected hexadecimal string but got "foo" instead}}test binary-8.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format c} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-8.2 {Tcl_BinaryObjCmd: format} {    list [catch {binary format c blat} msg] $msg} {1 {expected integer but got "blat"}}test binary-8.3 {Tcl_BinaryObjCmd: format} {    binary format c0 0x50} {}test binary-8.4 {Tcl_BinaryObjCmd: format} {    binary format c 0x50} Ptest binary-8.5 {Tcl_BinaryObjCmd: format} {    binary format c 0x5052} Rtest binary-8.6 {Tcl_BinaryObjCmd: format} {    binary format c2 {0x50 0x52}} PRtest binary-8.7 {Tcl_BinaryObjCmd: format} {    binary format c2 {0x50 0x52 0x53}} PRtest binary-8.8 {Tcl_BinaryObjCmd: format} {    binary format c* {0x50 0x52}} PRtest binary-8.9 {Tcl_BinaryObjCmd: format} {    list [catch {binary format c2 {0x50}} msg] $msg} {1 {number of elements in list does not match count}}test binary-8.10 {Tcl_BinaryObjCmd: format} {    set a {0x50 0x51}    list [catch {binary format c $a} msg] $msg} [list 1 "expected integer but got \"0x50 0x51\""]test binary-8.11 {Tcl_BinaryObjCmd: format} {    set a {0x50 0x51}    binary format c1 $a} Ptest binary-9.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format s} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-9.2 {Tcl_BinaryObjCmd: format} {    list [catch {binary format s blat} msg] $msg} {1 {expected integer but got "blat"}}test binary-9.3 {Tcl_BinaryObjCmd: format} {    binary format s0 0x50} {}test binary-9.4 {Tcl_BinaryObjCmd: format} {    binary format s 0x50} P\x00test binary-9.5 {Tcl_BinaryObjCmd: format} {    binary format s 0x5052} RPtest binary-9.6 {Tcl_BinaryObjCmd: format} {    binary format s 0x505251 0x53} QRtest binary-9.7 {Tcl_BinaryObjCmd: format} {    binary format s2 {0x50 0x52}} P\x00R\x00test binary-9.8 {Tcl_BinaryObjCmd: format} {    binary format s* {0x5051 0x52}} QPR\x00test binary-9.9 {Tcl_BinaryObjCmd: format} {    binary format s2 {0x50 0x52 0x53} 0x54} P\x00R\x00test binary-9.10 {Tcl_BinaryObjCmd: format} {    list [catch {binary format s2 {0x50}} msg] $msg} {1 {number of elements in list does not match count}}test binary-9.11 {Tcl_BinaryObjCmd: format} {    set a {0x50 0x51}    list [catch {binary format s $a} msg] $msg} [list 1 "expected integer but got \"0x50 0x51\""]test binary-9.12 {Tcl_BinaryObjCmd: format} {    set a {0x50 0x51}    binary format s1 $a} P\x00test binary-10.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format S} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-10.2 {Tcl_BinaryObjCmd: format} {    list [catch {binary format S blat} msg] $msg} {1 {expected integer but got "blat"}}test binary-10.3 {Tcl_BinaryObjCmd: format} {    binary format S0 0x50} {}test binary-10.4 {Tcl_BinaryObjCmd: format} {    binary format S 0x50} \x00Ptest binary-10.5 {Tcl_BinaryObjCmd: format} {    binary format S 0x5052} PRtest binary-10.6 {Tcl_BinaryObjCmd: format} {    binary format S 0x505251 0x53} RQtest binary-10.7 {Tcl_BinaryObjCmd: format} {    binary format S2 {0x50 0x52}} \x00P\x00Rtest binary-10.8 {Tcl_BinaryObjCmd: format} {    binary format S* {0x5051 0x52}} PQ\x00Rtest binary-10.9 {Tcl_BinaryObjCmd: format} {    binary format S2 {0x50 0x52 0x53} 0x54} \x00P\x00Rtest binary-10.10 {Tcl_BinaryObjCmd: format} {    list [catch {binary format S2 {0x50}} msg] $msg} {1 {number of elements in list does not match count}}test binary-10.11 {Tcl_BinaryObjCmd: format} {    set a {0x50 0x51}    list [catch {binary format S $a} msg] $msg} [list 1 "expected integer but got \"0x50 0x51\""]test binary-10.12 {Tcl_BinaryObjCmd: format} {    set a {0x50 0x51}    binary format S1 $a} \x00Ptest binary-11.1 {Tcl_BinaryObjCmd: format} {    list [catch {binary format i} msg] $msg} {1 {not enough arguments for all format specifiers}}test binary-11.2 {Tcl_BinaryObjCmd: format} {    list [catch {binary format i blat} msg] $msg} {1 {expected integer but got "blat"}}test binary-11.3 {Tcl_BinaryObjCmd: format} {    binary format i0 0x50} {}test binary-11.4 {Tcl_BinaryObjCmd: format} {    binary format i 0x50} P\x00\x00\x00test binary-11.5 {Tcl_BinaryObjCmd: format} {    binary format i 0x5052} RP\x00\x00test binary-11.6 {Tcl_BinaryObjCmd: format} {    binary format i 0x505251 0x53} QRP\x00test binary-11.7 {Tcl_BinaryObjCmd: format} {    binary format i1 {0x505251 0x53}} QRP\x00test binary-11.8 {Tcl_BinaryObjCmd: format} {    binary format i 0x53525150} PQRStest binary-11.9 {Tcl_BinaryObjCmd: format} {    binary format i2 {0x50 0x52}} P\x00\x00\x00R\x00\x00\x00test binary-11.10 {Tcl_BinaryObjCmd: format} {    binary format i* {0x50515253 0x52}} SRQPR\x00\x00\x00test binary-11.11 {Tcl_BinaryObjCmd: format} {    list [catch {binary format i2 {0x50}} msg] $msg} {1 {number of elements in list does not match count}}test binary-11.12 {Tcl_BinaryObjCmd: format} {    set a {0x50 0x51}    list [catch {binary format i $a} msg] $msg} [list 1 "expected integer but got \"0x50 0x51\""]test binary-11.13 {Tcl_BinaryObjCmd: format} {    set a {0x50 0x51}    binary format i1 $a

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
av资源站一区| 中文字幕日韩精品一区| 欧美va亚洲va香蕉在线| 国产亚洲精品超碰| 国产精品久久777777| 亚洲精品写真福利| 亚洲欧洲无码一区二区三区| 自拍偷拍欧美激情| 亚洲国产成人高清精品| 日韩二区在线观看| 国产福利一区二区三区视频| 99国产精品视频免费观看| 成人高清免费观看| 在线免费观看视频一区| 欧美日高清视频| 精品动漫一区二区三区在线观看| 久久精品欧美日韩精品| 亚洲精品美腿丝袜| 午夜精品免费在线| 日韩成人免费电影| 国产精品亚洲成人| 在线观看视频欧美| 精品成人在线观看| 中文字幕字幕中文在线中不卡视频| 一区二区三区高清| 亚洲国产美女搞黄色| 激情图区综合网| 91在线视频18| 欧美一区二区福利在线| 国产精品美女视频| 日本中文字幕一区| 成人精品在线视频观看| 91在线播放网址| 日韩欧美中文一区| 亚洲视频免费观看| 老司机精品视频线观看86| 91亚洲精品乱码久久久久久蜜桃| 91精品婷婷国产综合久久性色| 国产精品理伦片| 亚洲综合在线电影| 国产精品一区二区在线看| 在线观看日韩av先锋影音电影院| 精品伦理精品一区| 亚洲一二三四区| 国产99久久久精品| 欧美午夜电影一区| 国产精品午夜电影| 日韩成人免费在线| 在线亚洲免费视频| 国产视频一区不卡| 亚洲综合999| 大尺度一区二区| 日韩精品一区二区三区在线观看| 亚洲视频你懂的| 国产尤物一区二区在线| 欧美三级三级三级| 久久精品一区二区| 欧美a级一区二区| 91久久久免费一区二区| 亚洲国产精品国自产拍av| 美女网站色91| 精品视频一区三区九区| 亚洲人成网站精品片在线观看| 国产激情视频一区二区在线观看| 欧美一区永久视频免费观看| 亚洲女同一区二区| 成人午夜电影网站| 欧美一区二区三区婷婷月色| 一级精品视频在线观看宜春院| 成人app网站| 久久精品欧美一区二区三区不卡| 看国产成人h片视频| 欧美一区二区三区在线观看| 亚洲欧洲韩国日本视频| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 91精品国产综合久久福利软件| 亚洲欧美国产三级| www.一区二区| 国产精品热久久久久夜色精品三区| 韩国三级中文字幕hd久久精品| 日韩午夜激情视频| 日韩国产高清影视| 色综合久久综合| 综合久久国产九一剧情麻豆| 成人高清免费观看| 国产精品视频第一区| 国产电影精品久久禁18| 久久老女人爱爱| 国产高清亚洲一区| 国产女人aaa级久久久级| 国产成人免费视频| 国产精品毛片久久久久久| www.色精品| 亚洲蜜臀av乱码久久精品 | 日韩精品综合一本久道在线视频| 午夜精品爽啪视频| 欧美日韩国产在线播放网站| 午夜精品123| 91精品国产综合久久精品麻豆| 日韩激情视频在线观看| 日韩一区和二区| 麻豆精品国产传媒mv男同| 日韩欧美久久一区| 精品一区二区免费视频| 久久精品免费在线观看| 国产a级毛片一区| 久久这里只精品最新地址| 国产高清视频一区| 最新久久zyz资源站| 色哟哟亚洲精品| 亚洲123区在线观看| 色综合天天综合网国产成人综合天 | 亚洲欧美日韩国产一区二区三区| 欧美日韩视频第一区| 国产精品自拍三区| 一区二区欧美在线观看| 欧美大白屁股肥臀xxxxxx| 豆国产96在线|亚洲| 亚洲制服丝袜一区| 亚洲精品一区二区三区影院 | 综合婷婷亚洲小说| 日韩三级中文字幕| 99国产精品久久久久| 日本欧洲一区二区| 国产精品欧美久久久久一区二区| 欧美日韩一区二区电影| 国产成人福利片| 日韩精品亚洲一区| 国产精品久久久久9999吃药| 欧美一区二区三区视频在线| 成人动漫一区二区| 日韩成人一区二区| 亚洲精品欧美激情| 久久精品男人的天堂| 91精品国产综合久久精品app| av不卡免费在线观看| 久久福利资源站| 亚洲午夜在线视频| 久久精品免费在线观看| 91麻豆精品国产综合久久久久久| 国产成人午夜片在线观看高清观看| 亚洲国产视频在线| 国产精品久久久久久久久图文区 | 精品一区二区日韩| 亚洲成av人片在线观看无码| 欧美国产精品一区二区三区| 91精品国产欧美一区二区| 日本高清不卡视频| 成人精品在线视频观看| 激情综合色播激情啊| 日韩激情视频网站| 亚洲国产乱码最新视频| 国产精品二三区| 久久精品免视看| 精品va天堂亚洲国产| 91精品欧美一区二区三区综合在| 91成人免费在线| 成人黄色大片在线观看| 国产美女一区二区| 麻豆精品久久精品色综合| 日韩成人午夜精品| 丝袜亚洲另类丝袜在线| 一区二区久久久久| 亚洲美女屁股眼交3| 亚洲国产电影在线观看| 久久看人人爽人人| 久久这里只有精品首页| 欧美精品一区视频| 欧美一级片免费看| 欧美一区二区视频在线观看| 777久久久精品| 欧美精品乱码久久久久久按摩| 色天使色偷偷av一区二区| 99热精品一区二区| 99久久精品国产麻豆演员表| 成人app下载| 91网站在线播放| 91一区二区在线| 96av麻豆蜜桃一区二区| 91麻豆123| 欧美性色黄大片手机版| 在线免费观看一区| 欧美日韩一区高清| 欧美一区二区在线视频| 欧美一区二区啪啪| 精品国产一区久久| 久久精品一二三| 中文av一区二区| 亚洲少妇屁股交4| 一区二区在线免费| 亚洲丶国产丶欧美一区二区三区| 亚洲一区二区在线观看视频 | 欧美日韩国产综合一区二区 | 久久狠狠亚洲综合| 国产综合色精品一区二区三区| 国产麻豆91精品| 国产 日韩 欧美大片| 99久久婷婷国产| 在线免费精品视频| 日韩视频一区二区在线观看|