1
vote
2answers
34 views
How can I wait for one event out of a list of events in specman?
I have a struct in specman:
struct foo_s {
event foo_ev;
// some code that will emit foo_ev sometimes
};
And a list:
var foo_l: list of foo_s; // later code will mana …
0
votes
3answers
64 views
regular expression problem
Hi,
The regular expression ^(((\d{3}) ?)|(\d{3}-))?\d{3}-\d{4}$
matches strings of the form XXX-XXX-XXXX and XXX-XXXX (am I missing out something?)
It doesn't, however, match (X …
6
votes
4answers
656 views
calculating e^x without using any functions
Hi ..
We are supposed to calculate e^x using this kind of formula:
e^x = 1 + (x ^ 1 / 1!) + (x ^ 2 / 2!) ......
I have this code so far:
while( result >= 1.0E-20 )
{
power …
1
vote
1answer
61 views
What’s the difference between to_string() and as_a(string) in specman?
In Specman I can convert a variable to a string using either:
x.to_string();
or
x.as_a(string);
Is there any difference between the two? If not, why does Specman provide bot …
11
votes
49answers
4k views
Best Editor or IDE for Ruby?
I've heard so much about Textmate - The Missing Editor for Mac and that it is the best one for Ruby.
What is your choice?
And what is the best Ruby editor on Windows?
E?
1
vote
1answer
54 views
reduce list in Specman like in Python
Is there a reduce() list method in Specman that I can use for general reduction functions? I'm thinking of something like:
var x: list of bit = some_function_that_returns_list_of …
0
votes
0answers
37 views
Subscription service - E Commerce solution asp.net [closed]
There are plenty of e comm solutions with for a shopping cart type. BUT I am after a e comm solution ( open source, asp.net2.0+) that handles subscriptions to for time on a site. I …
0
votes
1answer
52 views
How to get E Text Editor to upload local copy of project files to server?
Hi,
I'm new to E Text Editor.
I have a project saved locally on my computer, that replicates a folder saved on my server. When I use my php IDE (PhpEd) and save a change to the lo …
1
vote
1answer
55 views
using “apply()” with methods that return void in specman
Specman has the apply() method to perform the same action on all elements of a list:
var a: list of int;
a = somefunction.that.returns.list.of.int();
var b:= a.apply(it * 2);
Wh …
0
votes
1answer
70 views
how can I create a reference to a variable in specman?
I have the following code in specman:
var x := some.very.long.path.to.a.variable.in.another.struct;
while (x == some_value) {
//do something that uses x;
//wait for somet …
0
votes
1answer
66 views
splitting a string into a list in specman
Supposing I have a string:
str = “ab,cd,ef”
and I want to split it into a list
lst = [“ab”,”cd”,ef”]
How can I do it best, assuming that I don’t know ahead of time how many i …
1
vote
2answers
49 views
How do I change the default *.elog log file name for an interpreted Specman session?
I want to be able to specify the file name stem for the log file in a Specman test. I need to hard-code the main *.elog filename so that I don't get variance between tests and con …
1
vote
1answer
132 views
Returning an array in Specman
How do I return an array from a method call in Specman? E.g.
method a : list of uint is {
var data: list of uint;
.....
result = data;
};
extend sys {
var data_sys: l …
2
votes
1answer
114 views
VIM syntax file for specman
Where can I find an updated syntax file for specman? There are a number of these on the web, but I want one with recommendations.
1
vote
2answers
209 views
how can I count the number of set bits in a uint in specman?
I want to count the number of set bits in a uint in Specman:
var x: uint;
gen x;
var x_set_bits: uint;
x_set_bits = ?;
What's the best way to do this?
