r23535: accept numeric ntstatus codes in nbench load files (ronnies wireshark
authorAndrew Tridgell <tridge@samba.org>
Sun, 17 Jun 2007 21:54:11 +0000 (21:54 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:53:25 +0000 (14:53 -0500)
script generates numeric codes)
(This used to be commit 455895c4b1651bc74f2f64514344d3561a2cd5bb)

source4/torture/nbench/nbench.c

index b55998e43fd0d8369e43954b23bb0924bc195002..021d172b4f35280be6ecd4e67a4731c077e34ff0 100644 (file)
@@ -48,7 +48,7 @@ static BOOL run_netbench(struct torture_context *tctx, struct smbcli_state *cli,
        BOOL correct = True;
        double target_rate = lp_parm_double(-1, "torture", "targetrate", 0);    
 
-       if (target_rate != 0) {
+       if (target_rate != 0 && client == 0) {
                printf("Targetting %.4f MByte/sec\n", target_rate);
        }
 
@@ -106,13 +106,19 @@ again:
                        exit(1);
                }
 
-               if (strncmp(params[i-1], "NT_STATUS_", 10) != 0) {
+               if (strncmp(params[i-1], "NT_STATUS_", 10) != 0 &&
+                   strncmp(params[i-1], "0x", 2) != 0) {
                        printf("Badly formed status at line %d\n", nbench_line_count);
                        talloc_free(params);
                        continue;
                }
 
-               status = nt_status_string_to_code(params[i-1]);
+               /* accept numeric or string status codes */
+               if (strncmp(params[i-1], "0x", 2) == 0) {
+                       status = NT_STATUS(strtoul(params[i-1], NULL, 16));
+               } else {
+                       status = nt_status_string_to_code(params[i-1]);
+               }
 
                DEBUG(9,("run_netbench(%d): %s %s\n", client, params[0], params[1]));