MIN 2009w04 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News MIN 2009w04 (Default branch)
# 1  
Old 01-23-2009
MIN 2009w04 (Default branch)

ImageMIN is an advanced unit/integration test frameworkfor Maemo/Linux. It supports test cases written inC (or C++) as well as scripted test cases with (atailor made) MIN scripter, Lua, or Python. Testcases are compiled into test modules that areloaded dynamically. A test case is executed in aseparate process.License: GNU General Public License v2Changes:
This release reduces cyclomatic code complexityfor the Enginecomponent, makes logging go to syslog instead of/tmp by default, andchanges the min-tests package installationdirectories. It fixes a bugin scripter result reporting, memory leaks indebug macros, a problemwith logging crashing when there were no writepermissions, a problemwith printing long lines from a scripter, Pythonasynchronous executionin ARM, and the automake rules.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Cron every 5 min

Hi, I am trying to run a script in cron every 5 min in SOLARIS 10 When I do5 * * * * /path to fileor*/5 * * * * /path to file Doesn't work. Please let me know what should I put in the cron entry Thanks (2 Replies)
Discussion started by: Rossdba
2 Replies

2. AIX

crontab every 5 min.

Hi running aix 6.1 oslevel 6100-07-03-1207 I need to confirm that this cron entry is set properly. I need it set for every 5 min. 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /path/to/script.sh it does not appear that it is running every 5 min but it did in the beginning. (4 Replies)
Discussion started by: vpundit
4 Replies

3. Solaris

min HW requirement for Solaris10?

Dear All I am using Solaris8 on my sun UltraSPARC machine. Can you please let me know what is the minimum HW requirement to install Solaris10g ? Thank you in advance (1 Reply)
Discussion started by: hadimotamedi
1 Replies

4. Shell Programming and Scripting

Get min from a column conditionally

hi, i have a file with folowing content: STORAGE PERCENTAGE FLAG: /storage_01 64% 0 /storage_02 17% 1 /storage_03 10% 0 /storage_04 50% 1 I need to get the value of STORAGE from those with FLAG=0 and which has the min PERCENTAGE i am able to get the STORAGE corresponding to... (8 Replies)
Discussion started by: kichu
8 Replies

5. Shell Programming and Scripting

How to get the counter value incremented after every 1 min?

I want to check the counter value for every 1 min until the particular counter value is reached and it should exit. Counter value: 15.( For Example) counter = 1 The start time is noted using Localtime. How can i do this in perl? Regards Archana (1 Reply)
Discussion started by: vanitham
1 Replies

6. Shell Programming and Scripting

grep for last 15 min of log

I need help trying to grep for a error in log file for only last 15 min. example under /var/adm/messages i need to grep for "error 102" but only if it occured in last 15 mins? Thanks (7 Replies)
Discussion started by: shehzad_m
7 Replies

7. Shell Programming and Scripting

crontab in every 05,20,35,50 min

Hi , How can i set a cronjob which needs to run every 05,20,35,50 min . I tried 05,20,35,50 * * * * /exec/eerrtis/tttttk/AOOK00000/bin/Packing.sh.. but its giving error while saving the crontab file .... What is the correct way ??? Thanks and Regards (4 Replies)
Discussion started by: scorpio
4 Replies

8. Shell Programming and Scripting

min and max value of process id

We are running a AIX 5.2 OS. Would anyone happen to know what the max value for a process id could be? Thanks jerardfjay :) (0 Replies)
Discussion started by: jerardfjay
0 Replies
Login or Register to Ask a Question
cgeqrt.f(3)							      LAPACK							       cgeqrt.f(3)

NAME
cgeqrt.f - SYNOPSIS
Functions/Subroutines subroutine cgeqrt (M, N, NB, A, LDA, T, LDT, WORK, INFO) CGEQRT Function/Subroutine Documentation subroutine cgeqrt (integerM, integerN, integerNB, complex, dimension( lda, * )A, integerLDA, complex, dimension( ldt, * )T, integerLDT, complex, dimension( * )WORK, integerINFO) CGEQRT Purpose: CGEQRT computes a blocked QR factorization of a complex M-by-N matrix A using the compact WY representation of Q. Parameters: M M is INTEGER The number of rows of the matrix A. M >= 0. N N is INTEGER The number of columns of the matrix A. N >= 0. NB NB is INTEGER The block size to be used in the blocked QR. MIN(M,N) >= NB >= 1. A A is COMPLEX array, dimension (LDA,N) On entry, the M-by-N matrix A. On exit, the elements on and above the diagonal of the array contain the min(M,N)-by-N upper trapezoidal matrix R (R is upper triangular if M >= N); the elements below the diagonal are the columns of V. LDA LDA is INTEGER The leading dimension of the array A. LDA >= max(1,M). T T is COMPLEX array, dimension (LDT,MIN(M,N)) The upper triangular block reflectors stored in compact form as a sequence of upper triangular blocks. See below for further details. LDT LDT is INTEGER The leading dimension of the array T. LDT >= NB. WORK WORK is COMPLEX array, dimension (NB*N) INFO INFO is INTEGER = 0: successful exit < 0: if INFO = -i, the i-th argument had an illegal value Author: Univ. of Tennessee Univ. of California Berkeley Univ. of Colorado Denver NAG Ltd. Date: November 2011 Further Details: The matrix V stores the elementary reflectors H(i) in the i-th column below the diagonal. For example, if M=5 and N=3, the matrix V is V = ( 1 ) ( v1 1 ) ( v1 v2 1 ) ( v1 v2 v3 ) ( v1 v2 v3 ) where the vi's represent the vectors which define H(i), which are returned in the matrix A. The 1's along the diagonal of V are not stored in A. Let K=MIN(M,N). The number of blocks is B = ceiling(K/NB), where each block is of order NB except for the last block, which is of order IB = K - (B-1)*NB. For each of the B blocks, a upper triangular block reflector factor is computed: T1, T2, ..., TB. The NB-by-NB (and IB-by-IB for the last block) T's are stored in the NB-by-N matrix T as T = (T1 T2 ... TB). Definition at line 142 of file cgeqrt.f. Author Generated automatically by Doxygen for LAPACK from the source code. Version 3.4.1 Sun May 26 2013 cgeqrt.f(3)