mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
18 lines
320 B
Perl
Executable File
18 lines
320 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
#
|
|
# Test wrapper for reportdata.pl, e.g. "Is my apache server
|
|
# collecting data?" this is an easy way to just shove in some
|
|
# random data to test things out.
|
|
#
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
require "reportdata.pl";
|
|
|
|
{
|
|
ReportData::send_results_to_server("web.java", 250, "--", "foo", "lespaul");
|
|
|
|
}
|